louislam
louislam
DDeno
Created by ivy on 5/22/2025 in #help
Supabase Client Causing Resourse Leak During Integration Tests
You can trace leaks: deno test --trace-leaks
4 replies
DDeno
Created by Steve on 5/9/2025 in #help
How to use permissions with node scripts
You have to check ng is pointing to which js file in the angular's package.json. In this case, it should be @angular/cli/bin/ng.js https://www.npmjs.com/package/@angular/cli?activeTab=code So I guess you can run by
deno run --allow-all ./node_modules/@angular/cli/bin/ng.js serve
deno run --allow-all ./node_modules/@angular/cli/bin/ng.js serve
8 replies
DDeno
Created by Romuald Quantin on 4/17/2025 in #help
Vite dev server with HTTPS (node:http2)
As the error said, the http2 server is not implemented in Deno. You can confirm it by viewing their source code. https://github.com/denoland/deno/blame/5b5e93ff42f0a18a768041df2a3d2262c9d31c0b/ext/node/polyfills/http2.ts#L1753
6 replies