Mark Tiedemann
Mark Tiedemann
**Why?** - Because `cmd.exe` is still the default Windows command prompt which, arguably, makes it more user-friendly to run the installer in `cmd.exe` rather than `powershell.exe`. - More choices for...
Currently, we require `unzip` to be installed for extracing the Zip archive (see https://github.com/denoland/deno_install/blob/master/install.sh#L7-L10, https://github.com/denoland/deno_install#unzip-is-required). Contrary to `gnutar`, `bsdtar` (a `tar` implementation by [libarchive](https://github.com/libarchive/libarchive)) is able to extract `.zip` files,...
As witnessed in https://github.com/denoland/deno/issues/5727 and https://github.com/denoland/deno_install/issues/129, people may not expect Deno to just be an `.exe` in a `.zip`. I think adding manual installation instructions might help. To reduce installation...
When I open Chrome in Incognito Mode, it shows me that I'm logged in to the following services (even though I'm not): ``` Twitter Facebook Google Plus Reddit Flickr ```...
Hi @lucacasonato, thanks for this awesome project! deno run --unstable -A puppeteer .ts Deno - A secure runtime for JavaScript and TypeScript [1230/190020.763:ERROR:command_buffer_proxy_impl.cc(122)] ContextResult::kTransientFailure: Failed to send GpuChannelMsg_CreateCommandBuffer. [1230/190020.764:ERROR:command_buffer_proxy_impl.cc(122)] ContextResult::kTransientFailure:...
```batch winget install deno :: or winget install --exact --id DenoLand.Deno ```
Currently, `Deno.upgradeWebSocket` returns a `WebSocket`. It could return a `WebSocketStream`, too, for example: ```typescript const conn = await Deno.listen({ port: 80 }); const httpConn = Deno.serveHttp(await conn.accept()); const e =...
See https://github.com/tediousjs/tedious/issues/1246
See https://github.com/sass/dart-sass/issues/1142 As a workaround, I wrote https://github.com/marktiedemann/deno-dart-sass which wraps their native CLI. Would prefer a JS version, though.
Currently, `deno doc --html` requires the module name as an argument. ``` > deno doc --html mod.ts error: the following required arguments were not provided: --name= ``` I think the...