Import local typescript file so both Deno (LSP) and TS work?
.ts while TS wants no file extension.
Is there any way to change either of them to accept the other?...sub sub domain on deno.dev
Can I run an express application under deno
how to cli run node modules without --compat
deno run --compat has now been removed in favor of npm: specifiers https://deno.com/blog/v1.26#--compat-mode-removed. I am sure this consolidates a lot of code, but I am unsure how I can gain back certain functionality. For instance, I could run a solidjs template out of the box from deno with compat like so:
deno run --compat --unstable --allow-env --allow-read --allow-run --allow-net node_modules/.bin/vite dev
Using npm specifiers, I dont seem to have the same capabilities.
deno run --compat --unstable --allow-env --allow-read --allow-run npm:vite...Intellisense on an import not working, works for friend
import * as bsdeno from "https://raw.githubusercontent.com/KivalEvan/BeatSaber-Deno/main/types/beatmap/v3/mod.ts" to have intellisense.
I try typing const b: bsdeno. and nothing shows up. I tried restarting TS and deno language servers, tried restarting VSC, tried updating deno, and restarting my computer. No dice.. my friend is using the exact same import and intellisense is working fine....
Where the Typescript Header files cached by Dino on MacOS
?? lint doesn't seem to catch type errors ??
How to create a broadcast system with streams and oak?
Deno.serveTls with self signed certificate
ReadableStream to JSON
distinguis `netERR_CONNECTION_TIMED_OUT` from `netERR_CERT_AUTHORITY_INVALID`
net::ERR_CERT_AUTHORITY_INVALID because i use self signed certs on the domain localhost
now i want to check if the net::ERR_CERT_AUTHORITY_INVALID occurs, and if so the user should receive a message, but how can i distingish form other network errors like if the server is down fetch would throw a net::ERR_CONNECTION_REFUSED
when i catch the fetch error , all i get is:
```...Command doesn't work in deno task but works outside of deno task
(find . -name '*.js'; find . -name '*.as') | grep -v bundle | xargs wc -l | sort
(find . -name '*.js'; find . -name '*.as') | grep -v bundle | xargs wc -l | sort
How do I patch a std api?
vm.isContext function to return false in order to get the node:jsdom library to work: https://github.com/denoland/fresh/issues/427#issuecomment-1251918545
I am wondering how they did that....Monkey patch Broadcast Channel to send messages to current context
new BroadcastChannel("test_channel"); which I in the same context want to post messages to and still be able to recieve them.
So if my pretty little drawing helps:
```
|---same javascript context----------|...Dynamically imported module evaluation is still pending
How to setup CORS with serve? I get 403 forbidden.