crowlKats
Unable to request adapter for webgpu on WSL2
WSL is currently not supported, see https://github.com/gfx-rs/wgpu/issues/1443
6 replies
How do I install NPM packages as *development dependencies* in Deno? Is that even possible?
--dev
has no effect without a package.json. Dependencies inside of a deno.json imports field are "smart", and are only installed when needed - there is no need to make an explicit distinction between production and development dependencies.4 replies
Warning: Not implemented: ClientRequest.options.createConnection
however this issue is in the works in https://github.com/denoland/deno/pull/25470
11 replies
Replacing `fs.createWriteStream()` with Deno equivalent
deno (and the web) and node's streaming APIs are different; so first you need to convert it using one of the node functions to get a web one: https://nodejs.org/api/stream.html#streamreadabletowebstreamreadable-options
9 replies