-
Notifications
You must be signed in to change notification settings - Fork 5.4k
New issue
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
Demo server #3083
Comments
Hi! Thanks for opening the issue, can you show output from the command? |
We recently had some changes to |
jaja oook, I've recently met deno and I will wait the fix, thanks men 👍 |
@JuanRaymundo I've fixed manual example in the above PR. Here is the correct code for v0.20.0 const listener = Deno.listen({ port: 8080 });
console.log("listening on 0.0.0.0:8080");
while (true) {
const conn = await listener.accept();
Deno.copy(conn, conn);
} |
thank you :D |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I can not run the denno(demo) server
deno https://deno.land/std/examples/echo_server.ts
this demo is here
https://github.com/denoland/deno/blob/master/website/manual.md#tcp-echo-server
The text was updated successfully, but these errors were encountered: