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

Commit da7d7ed

Browse files
committed
Update readme
1 parent 49cad1b commit da7d7ed

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,14 @@ Visit [https://alephjs.org/docs/get-started](https://alephjs.org/docs/get-starte
1414

1515
Aleph.js (or **Aleph** or **א** or **阿莱夫**, **ˈɑːlɛf**) is a fullstack framework in [Deno](https://deno.land/), inspired by [Next.js](https://nextjs.org/).
1616

17-
> The name is taken from the book **The Aleph** by [Jorge Luis Borges](http://phinnweb.org/links/literature/borges/aleph.html).
17+
> The name is taken from the book [_The Aleph_]( http://phinnweb.org/links/literature/borges/aleph.html)
18+
by [Jorge Luis Borges](http://phinnweb.org/links/literature/borges/aleph.html).
1819

1920
Different with Next.js, Aleph.js doesn't need webpack or other bundler since it uses the [ES Module](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules) syntax during development. 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 is no time wasted re-bundling everytime a change is made. This, along with Hot Module Replacement (HMR) and Fast Refresh, leads to instant updates in the browser.
2021

2122
Aleph.js uses modern tools to build your app. It transpiles code using [swc](https://swc.rs/) in [WASM](https://webassembly.org/) with high performance, and bundles modules with [esbuild](https://github.com/evanw/esbuild) at build time extremely fast.
2223

23-
Aleph.js works in Deno, a simple, modern and secure runtime for JavaScript and TypeScript. All dependencies are imported using URLs, and managed by Deno cache system. No package.json and node_modules directory needed.
24+
Aleph.js works in Deno, a simple, modern and secure runtime for JavaScript and TypeScript. All dependencies are imported using URLs, and managed by Deno cache system. No `package.json` and `node_modules` directory needed.
2425

2526
```ts
2627
import React from 'https://esm.sh/react'
@@ -48,4 +49,4 @@ Please see our [contributing.md](https://github.com/alephjs/aleph.js/blob/master
4849

4950
## License
5051

51-
Aleph.js [MIT licensed.](https://github.com/alephjs/aleph.js/blob/master/LICENSE)
52+
[MIT licensed.](https://github.com/alephjs/aleph.js/blob/master/LICENSE)

0 commit comments

Comments
 (0)