MrKleeblatt
MrKleeblatt
DDeno
Created by .pablowww on 9/10/2023 in #help
I want to contribute to deno without disturbing my libs in linux . Is there a way?
Apt needs to be run as root (with sudo in front of the command) if that's the problem
10 replies
DDeno
Created by Đăng Tú on 9/8/2023 in #help
does Deno vscode support nesting `deno.json`?
Did you think of vscode workspaces? You can define the path to (and name of) deno.json in the .vscode/settings.json and if you are using workspaces you can just use different settings in this subdirectory
6 replies
DDeno
Created by Industrial on 9/3/2023 in #help
Get Deno working with ESLint
I guess you don't. The Deno namspace is builtin
2 replies
DDeno
Created by Ooker on 8/7/2023 in #help
VS Code's debugger terminates before finished
Du you have --inspect-brk=127.0.0.1:9229 as an argument in your launch.json?
3 replies
DDeno
Created by Bairdy on 8/6/2023 in #help
Deno.serve AbortController onError. How?
That's because onError needs a return value. Although never called because of the ac.abort() call, just add
return new Response("never");
return new Response("never");
at the end of the onError function.
6 replies
DDeno
Created by martpet on 6/29/2023 in #help
Deno KV: subtract with `sum` operation?
This magic number represents negative one in a 64bit binary number system. There are good videos on youtube explaining that: https://www.youtube.com/watch?v=sJXTo3EZoxM or https://www.youtube.com/watch?v=dHjPgLZzZ24
4 replies
DDeno
Created by lucsoft on 6/21/2023 in #help
Handle timeout in WebSocketStream?
Can you share your code please?
2 replies
DDeno
Created by DNA on 5/25/2023 in #help
Cannot access web server from other network devices when compiled
Works for me on Linux, maybe has something to do with the windows compile system...
10 replies
DDeno
Created by DNA on 5/25/2023 in #help
Cannot access web server from other network devices when compiled
Which OS do u use?
10 replies
DDeno
Created by DNA on 5/25/2023 in #help
Cannot access web server from other network devices when compiled
I guess if you ran the file directly through Deno without compilation it would work?
10 replies
DDeno
Created by MrKleeblatt on 5/9/2023 in #help
`await import()` without global execution
Oh, this seems like a misunderstanding 😅 test.ts is just some random file, has nothing to do with actual tests. But thanks @Andreu Botella (he/they), that's what I assumed as well…
5 replies
DDeno
Created by scarf on 4/28/2023 in #help
how to cancel test watch
close the terminal lol
3 replies
DDeno
Created by wulfey on 4/22/2023 in #help
Preventing `Deno.stdin` reads from blocking
That is really annoying. Hop some of the core team members read this
12 replies