cant set up vscode language server
Choose level for std logger
setup function from std/log. This way levels are hard-coded. I would like to be able to pass a --debug option to my script to activate the DEBUG level, otherwise use INFO and above.
Is it possible to achieve this using std/log? If not, what are other libs you can recommend instead?...folks running into this wiered issue on deploythe deployment is continuously failing
Problem with the npm package and vite/esbuild
How to send an enum value from Rust to Deno
MyEvent and MySubEvent.
```rust
#[repr(C)]...Dependency injection deno deploy
Service keep restarting
Run `nvm` using Deno.Command
nvm from a Deno script using Deno.Command.
```ts
new Deno.Command('nvm', {
args: ['use'],
stderr: 'inherit',...Creating custom GitHub Action using Deno
how to avoid deprecation warnings in compiled binaries
Deno compile with "--no-terminal" don't work
await Deno.writeTextFile('test.txt', 'Hello World');
await Deno.writeTextFile('test.txt', 'Hello World');
deno task start not runnning in Powershell.
Deployment ID not available after API deployment
`Request` body reading functions: possible error types
⚠️ Be aware that the req.text() call can fail if the user hangs up the connection before the body is fully received. Make sure to handle this case. Do note this can happen in all methods that read from the request body, such as req.json(), req.formData(), req.arrayBuffer(), req.body.getReader().read(), req.body.pipeTo(), etc.I was wondering exactly which error gets thrown in this situation. Is it a NetworkError, or a TypeError, etc. I couldn't find any documentation (even in the spec) regarding what errors these body reading functions can throw. I have a use case that requires knowing exactly why the function failed....
How to call a JS function from Rust?
View code in Subhosting project
Stop deno deploy instance
How can I flush a stream to a response?
--allow-net, then observe the difference in behavior between curl http://127.0.0.1:8000/%0a and curl http://127.0.0.1:8000/%20.
```js
const encoder = new TextEncoder();...Hoping for a clean way to get an array of filenames in directory
const files = Deno.readDirSync(Deno.cwd()).map(x => x.name);
const files = Deno.readDirSync(Deno.cwd()).map(x => x.name);