ioB
Specifying config remotely or jsx on install
I'm struggling quite a lot here. I originally recommended using this command:
but it turns out deno doesn't support loading a remote config? That seems strange to me but sure. To work around this, I'm trying to do:
but it gives the following error:
I know that philosophically, Deno in the past claimed that you could always pass in command line flags instead of a config file. Any ideas on what to do here?
3 replies
solid-js with Deno
I was wondering if it was possible to use solid-js with Deno natively without something like esbuild. This is possible with react (with no config):
Currently my
deno.json
looks likes:
and my code looks like
but when I run it I get
15 replies
Running esbuild with esbuild_deno_loader
I've spent probably four or five hours trying to track down this issue, to the point where I actually started tweaking and rebuilding old versions of esbuild to try and reproduce this bug without the help of a plugin. I have no idea. I want to find what version this started happening in to file a bug report (because I think it's an esbuild issue), but I haven't had the time to do that.
Here is the reproc code (it only errors with wasm):
Running this results in:
This is blocking any upgrade of the esbuild dependency for fresh.
11 replies
Updating digest with web crypto
For some context, I'm updating some code that was importing from
std/hash
(specifically std/hash/sha256
) to use std/crypto
since the hash submodule is long gone.
I've run up against a case where I'm not really sure what I should do to move forward. The code looks something like this:
Is this possible to handle in the web crypto standard? I'm pretty sure I should just be able to aggregate the chunks into one massive uint8array or something but I feel like there is no reason to buffer the whole thing into memory.
Any ideas?30 replies