ioB
ioB
DDeno
Created by FutureLights on 10/19/2024 in #help
Deno Compile Exe doesn't run
drivelist uses napi. I don't believe this is supported quite yet in deno compile. I found this open issue: https://github.com/denoland/deno/issues/23266. cc @divy
6 replies
DDeno
Created by lowercasebtw :3 on 9/21/2024 in #help
Stupid Broken Pipe
can you share code
19 replies
DDeno
Created by Phatso on 8/12/2024 in #help
Importing local files (streaming large JSON files)
Could you share your code
6 replies
DDeno
Created by Bhaumin on 7/29/2024 in #help
Please help to run puppeteer with deno?
If you're looking for a deno-native browser automation solution, that's what I would recommend (I also happen to be the author of the library so I have a bit of bias here).
23 replies
DDeno
Created by Bhaumin on 7/29/2024 in #help
Please help to run puppeteer with deno?
https://github.com/lino-levan/astral/issues/84 created this issue for webdriver bidi if you want to follow it
23 replies
DDeno
Created by Bhaumin on 7/29/2024 in #help
Please help to run puppeteer with deno?
already landed in main, I don't believe I've cut a release yet
23 replies
DDeno
Created by Bhaumin on 7/29/2024 in #help
Please help to run puppeteer with deno?
23 replies
DDeno
Created by Bhaumin on 7/29/2024 in #help
Please help to run puppeteer with deno?
I will create an issue to have a better error message (one with commands to run)
23 replies
DDeno
Created by Bhaumin on 7/29/2024 in #help
Please help to run puppeteer with deno?
it looks like you're missing some system dependencies, were you trying to do this within docker or something?
23 replies
DDeno
Created by Bhaumin on 7/29/2024 in #help
Please help to run puppeteer with deno?
happy to release an experimental build with support if you need it
23 replies
DDeno
Created by Bhaumin on 7/29/2024 in #help
Please help to run puppeteer with deno?
webdriver bidi is really not ready yet
23 replies
DDeno
Created by 🎀𝔸ℕ𝔾𝔼𝕃 𝔻𝕆𝕃𝕃𝔽𝔸ℂ𝔼🎀🇵🇸 on 7/27/2024 in #help
SHOWCASE FEEDBACK
Looks cool, wish there was more stuff on the page
4 replies
DDeno
Created by TangJieHao on 7/6/2024 in #help
Deno + Puppeteer causing compiler issues.
(I recommend putting it at the top)
4 replies
DDeno
Created by TangJieHao on 7/6/2024 in #help
Deno + Puppeteer causing compiler issues.
you can add
/// <reference lib="dom" />
/// <reference lib="dom" />
anywhere in the file :)
4 replies
DDeno
Created by abi on 6/20/2024 in #help
Type-narrowing/covariance/contravariance
worth a read if you're curious
27 replies
DDeno
Created by abi on 6/20/2024 in #help
Type-narrowing/covariance/contravariance
27 replies
DDeno
Created by abi on 6/20/2024 in #help
Type-narrowing/covariance/contravariance
swift took this to the extreme and some people consider that to be its biggest mistake
27 replies
DDeno
Created by abi on 6/20/2024 in #help
Type-narrowing/covariance/contravariance
like I wish the typescript one just worked, but making type inference just work in that case is expensive
27 replies
DDeno
Created by abi on 6/20/2024 in #help
Type-narrowing/covariance/contravariance
In this case, there's a usability/compile time tradeoff you make here
27 replies
DDeno
Created by abi on 6/20/2024 in #help
Type-narrowing/covariance/contravariance
rust makes a tradeoff here where
let mut x = Vec::new();
x.push(1);
let mut x = Vec::new();
x.push(1);
actually just works ™️
27 replies