tezx 2.0.0 → 2.0.1
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 +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -189,7 +189,7 @@ npm run dev
|
|
|
189
189
|
`src/index.ts`:
|
|
190
190
|
|
|
191
191
|
```ts
|
|
192
|
-
import { bunAdapter } from "tezx/
|
|
192
|
+
import { bunAdapter } from "tezx/bun";
|
|
193
193
|
bunAdapter(app).listen(3000, (message) => {
|
|
194
194
|
console.log(message);
|
|
195
195
|
});
|
|
@@ -206,7 +206,7 @@ bunAdapter(app).listen(3000, (message) => {
|
|
|
206
206
|
`src/index.ts`:
|
|
207
207
|
|
|
208
208
|
```ts
|
|
209
|
-
import { denoAdapter } from "tezx/
|
|
209
|
+
import { denoAdapter } from "tezx/deno";
|
|
210
210
|
denoAdapter(app).listen(3000, (message) => {
|
|
211
211
|
console.log(message);
|
|
212
212
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tezx",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "TezX is a high-performance, lightweight JavaScript framework designed for speed, scalability, and flexibility. It enables efficient routing, middleware management, and static file serving with minimal configuration. Fully compatible with Node.js, Deno, and Bun.",
|
|
5
5
|
"main": "cjs/index.js",
|
|
6
6
|
"module": "index.js",
|