We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a9d147 commit 0edc913Copy full SHA for 0edc913
CHANGELOG.md
@@ -1,3 +1,11 @@
1
+# 1.3.1
2
+Change:
3
+- use srvx, crossws
4
+
5
+Improvement:
6
+- support WebSocket (cork, and isSubscribed is not implemented yet)
7
+- support `ElysiaFile` `content-type`, and `content-range`
8
9
# 1.3.0 - 27 May 2025
10
Change:
11
- use WebStandard Compatibility via `@hono/node-server`
example/index.ts
@@ -17,7 +17,7 @@ const app = new Elysia({
17
ws.send(message)
18
}
19
})
20
- .get('/image', async () => file('test/images/midori.png'))
+ .get('/image', async () => file('test/kyuukurarin.mp4'))
21
.get('/generator', async function* () {
22
for (let i = 0; i < 100; i++) {
23
await new Promise((resolve) => setTimeout(resolve, 10))
0 commit comments