Skip to content
This repository was archived by the owner on Jul 6, 2025. It is now read-only.

Commit eb8eb0a

Browse files
author
X
authored
Update README.md
1 parent 8212d94 commit eb8eb0a

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ The React Framework in [Deno](https://deno.land), inspired by [Next.js](https://
1111
[![Chat](https://img.shields.io/discord/775256646821085215?color=%23008181&label=Chat&labelColor=%23111&logo=discord&logoColor=%23aaaaaa)](https://discord.gg/pWGdS7sAqD)
1212
[![Twitter Follow](https://img.shields.io/twitter/follow/alephjs?style=social)](https://twitter.com/intent/follow?screen_name=alephjs)
1313

14-
Different with Next.js, Aleph.js don't need **webpack** or other bundler since Aleph.js use the **ESM** imports syntax. Every module only needs to be compiled once and then cached on the disk. When a module changes, Aleph.js just recompile that single module, there's no time wasted re-bundling every changes, and instant updates in the browser by **HMR** (Hot Module Replacement) with **React Fast Refresh**.
14+
Different with Next.js, Aleph.js don't need **webpack** or other bundler since it uses the **ESM** imports syntax. Every module only needs to be compiled once and then cached on the disk. When a module changes, Aleph.js just needs to re-compile that single module, there's no time wasted to *re-bundle* every changes, and instantly updates in the browser by **HMR** (Hot Module Replacement) with **React Fast Refresh**.
1515

1616
Aleph.js works in **Deno**, a *simple*, *modern* and *secure* runtime for JavaScript and TypeScript. No `package.json` and `node_modules` directory needed, all dependencies are imported as URL and managed by Aleph.js:
1717

1818
```jsx
19-
import React from "https://esm.sh/react"
19+
import React from "https://esm.sh/react@17.0.1"
2020
import Logo from "../components/logo.tsx"
2121

22-
export default function Page() {
22+
export default function Home() {
2323
return (
2424
<div>
2525
<Logo />
@@ -36,7 +36,8 @@ export default function Page() {
3636
- Import Maps
3737
- HMR with Fast Refresh
3838
- File-system Routing
39-
- Markdown Page
39+
- APIs Routing
40+
- Built-in Markdown Page
4041
- Built-in CSS(Less) Support
4142
- SSR/SSG
4243

0 commit comments

Comments
 (0)