Romuald Quantin
Romuald Quantin
DDeno
Created by Romuald Quantin on 4/17/2025 in #help
Vite dev server with HTTPS (node:http2)
Hi, posted a comment there: https://github.com/denoland/deno/issues/26088#issuecomment-2812421778 There are a few threads that are unanswered. It looks like node:http2 is supported accoding to this? https://docs.deno.com/api/node/http2/
error when starting dev server:
Error [ERR_NOT_IMPLEMENTED]: Not implemented: http2.createSecureServer
at notImplemented (ext:deno_node/_utils.ts:9:9)
at createSecureServer (node:http2:1302:3)
error when starting dev server:
Error [ERR_NOT_IMPLEMENTED]: Not implemented: http2.createSecureServer
at notImplemented (ext:deno_node/_utils.ts:9:9)
at createSecureServer (node:http2:1302:3)
I think the vite code is there: I can provide a short example if needed. Can I get some answers for that (unsupported or bug)? We're looking at using Deno on a large app, but that may be a deal breaker, HTTPS is important for development for us (video, DRM, etc).
2 replies
DDeno
Created by Romuald Quantin on 4/8/2025 in #help
Deno + Vite + devServer (SSR) issue with missing symbol
This has been a deal breaker for us to consider Deno for a new large app, so I thought I'd share a minimal reproduction so we can get further: https://github.com/soundstep/deno-vite-ssr-playground/tree/deno-vite-plugin?tab=readme-ov-file#known-issues See the readme for usage and issue.
4 replies
DDeno
Created by Romuald Quantin on 10/21/2022 in #help
Deno bundle hangs
I've got this deno bundle issue, could someone help on that one? Not sure where to look. https://github.com/denoland/deno/issues/16341
2 replies
DDeno
Created by Romuald Quantin on 10/14/2022 in #help
How to create a crypto key to use with JWT from a Github pem file
Hi, I'm running into some difficulties to create a CryptoKey from a pem file. The pem key is created from this: https://docs.github.com/en/developers/apps/building-github-apps/authenticating-with-github-apps#authenticating-as-a-github-app The key format seems to be "ASN1", the error I'm getting:
unexpected ASN.1 DER tag: expected SEQUENCE, got INTEGER at DER byte 7 DataError: unexpected ASN.1 DER tag: expected SEQUENCE, got INTEGER at DER byte 7
unexpected ASN.1 DER tag: expected SEQUENCE, got INTEGER at DER byte 7 DataError: unexpected ASN.1 DER tag: expected SEQUENCE, got INTEGER at DER byte 7
What I'm trying to execute:
crypto.subtle.importKey(
'pkcs8',
binaryDer,
{
name: 'RSASSA-PKCS1-v1_5',
hash: 'SHA-256',
},
true,
['sign'],
);
crypto.subtle.importKey(
'pkcs8',
binaryDer,
{
name: 'RSASSA-PKCS1-v1_5',
hash: 'SHA-256',
},
true,
['sign'],
);
This is also describing the issue: https://github.com/denoland/deno/issues/13907 Can someone help?
3 replies