We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.1.26
wsl ubuntu
after creating a new elysia app set aot to false and add a websocket
import { Elysia } from "elysia"; new Elysia({ aot: false }) .ws("/ws", { message(ws, message) { ws.send(message) }, }) .listen(3000);
Connected to ws://localhost:3000/ws
Could not connect to ws://localhost:3000/ws
it simply doesn't work.
node_modules
bun.lockb
yes
The text was updated successfully, but these errors were encountered:
aot: false
No branches or pull requests
What version of Elysia is running?
1.1.26
What platform is your computer?
wsl ubuntu
What steps can reproduce the bug?
after creating a new elysia app set aot to false and add a websocket
What is the expected behavior?
Connected to ws://localhost:3000/ws
What do you see instead?
Could not connect to ws://localhost:3000/ws
Additional information
it simply doesn't work.
Have you try removing the
node_modules
andbun.lockb
and try again yet?yes
The text was updated successfully, but these errors were encountered: