elysia 0.8.9 → 0.8.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -4
- package/dist/bun/index.js +68 -64
- package/dist/bun/index.js.map +28 -23
- package/dist/cjs/compose.js +6 -2
- package/dist/cjs/compose.js.map +1 -1
- package/dist/cjs/handler.js +63 -7
- package/dist/cjs/handler.js.map +1 -1
- package/dist/cjs/ws/index.d.ts +3 -3
- package/dist/cjs/ws/index.js +7 -7
- package/dist/cjs/ws/index.js.map +1 -1
- package/dist/compose.js +36 -32
- package/dist/handler.js +1 -1
- package/dist/ws/index.d.ts +3 -3
- package/dist/ws/index.js +1 -1
- package/package.json +2 -1
- package/.scannerwork/.sonar_lock +0 -0
- package/.scannerwork/report-task.txt +0 -6
package/README.md
CHANGED
|
@@ -1,20 +1,22 @@
|
|
|
1
1
|
<br>
|
|
2
2
|
<p align=center>
|
|
3
|
-
|
|
3
|
+
<img src=https://github.com/elysiajs/elysia/assets/35027979/15653752-866c-4525-99f9-edde0aafc856 alt="ElysiaJS logo with word ElysiaJS on the left" width=480 />
|
|
4
4
|
</p>
|
|
5
5
|
|
|
6
6
|
<p align=center>Ergonomic Framework for Humans</p>
|
|
7
7
|
|
|
8
8
|
<p align=center>
|
|
9
|
-
<a href=https://elysiajs.com>Documentation</a> | <a href=https://discord.gg/eaFJ2KDJck>Discord</a>
|
|
9
|
+
<a href=https://elysiajs.com>Documentation</a> | <a href=https://discord.gg/eaFJ2KDJck>Discord</a> | <a href=https://github.com/sponsors/SaltyAom>Sponsors</a>
|
|
10
10
|
</p>
|
|
11
11
|
|
|
12
|
-
TypeScript framework supercharged by Bun with End-to-End Type Safety, unified type system and outstanding developer experience
|
|
12
|
+
TypeScript framework supercharged by Bun with End-to-End Type Safety, unified type system, and outstanding developer experience
|
|
13
13
|
|
|
14
14
|
```bash
|
|
15
15
|
bun create elysia app
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
+

|
|
19
|
+
|
|
18
20
|
## Documentation
|
|
19
21
|
The documentation is available on [elysiajs.com](https://elysiajs.com).
|
|
20
22
|
|
|
@@ -22,4 +24,4 @@ The documentation is available on [elysiajs.com](https://elysiajs.com).
|
|
|
22
24
|
See [Contributing Guide](CONTRIBUTING.md) and please follow our [Code of Conduct](CODE_OF_CONDUCT.md).
|
|
23
25
|
|
|
24
26
|
## Discord
|
|
25
|
-
Come join the [Discord channel~](https://discord.gg/eaFJ2KDJck)
|
|
27
|
+
Come join the [Discord community channel~](https://discord.gg/eaFJ2KDJck)
|