crowlKats
crowlKats
DDeno
Created by melkam on 12/18/2024 in #help
Unable to request adapter for webgpu on WSL2
WSL is currently not supported, see https://github.com/gfx-rs/wgpu/issues/1443
6 replies
DDeno
Created by Pedro on 12/13/2024 in #help
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
DDeno
Created by MOtherMetroid on 4/13/2024 in #help
Warning: Not implemented: ClientRequest.options.createConnection
however this issue is in the works in https://github.com/denoland/deno/pull/25470
11 replies
DDeno
Created by MOtherMetroid on 4/13/2024 in #help
Warning: Not implemented: ClientRequest.options.createConnection
no
11 replies
DDeno
Created by ryann on 12/4/2024 in #help
`deno add -D`
when deno runs, it only uses the dependencies it needs. same applies for jsr
6 replies
DDeno
Created by ryann on 12/4/2024 in #help
`deno add -D`
what do you mean with "building"?
6 replies
DDeno
Created by ryann on 12/4/2024 in #help
`deno add -D`
this is only applicable for package.json
6 replies
DDeno
Created by Robbie on 11/28/2024 in #help
Replacing `fs.createWriteStream()` with Deno equivalent
you want to pass the writable, not the writer (yes i know, very confusing nomenclature), so in your case output.writable
9 replies
DDeno
Created by Robbie on 11/28/2024 in #help
Replacing `fs.createWriteStream()` with Deno equivalent
then from there you can use .pipeTo on the readable with the value of the writable
9 replies
DDeno
Created by Robbie on 11/28/2024 in #help
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
DDeno
Created by kush.dev on 11/26/2024 in #help
Error in Accessing Import that is working fine in node.js.
if you really want directory imports, which we don't recommend, you can specify the --unstable-sloppy-imports flag
5 replies
DDeno
Created by kush.dev on 11/26/2024 in #help
Error in Accessing Import that is working fine in node.js.
you want to import the actual file (in this case its probably index.js)
5 replies
DDeno
Created by kush.dev on 11/26/2024 in #help
Error in Accessing Import that is working fine in node.js.
you are trying to import a directory instead of a file
5 replies
DDeno
Created by Char on 11/25/2024 in #help
Error With Deno Command Installing JSR Packages
you'd want to apss the individual packages as individual strings, not as one string with all of them
2 replies
DDeno
Created by Nathan ODS on 10/30/2024 in #help
Is there a typo in deno -h ?
yes, thats a typo; PR would be welcome!
4 replies