Sebastien Guillemot
Sebastien Guillemot
Currently, if you try and use an extension without specifying a `dataDir` ```ts import { citext } from '@electric-sql/pglite/contrib/citext'; const db = new PGlite(undefined, { extensions: { citext } });...
Previously, when using Deno with WASM, you had to create a JS file that would instantiate your WASM module ```ts const wasmInstance = WebAssembly.instantiateStreaming(fetch("./add.wasm")); ``` However, as of [Deno 2.1](https://deno.com/blog/v2.1#first-class-wasm-support),...
### Feedback For my project, I want to have a custom way to create a Hardhat node that is instrumented with my own logic instead of the Hardhat one (specifically,...
Closes #136
Currently, `dax` has a very slim single Rust file [here](https://github.com/dsherret/dax/blob/main/src/rs_lib/src/lib.rs) that exposes a WASM interface for the `deno_task_shell` parsing logic which it then compiles with `deno run -A https://deno.land/x/[email protected]/main.ts --sync...
### What problem does the new feature solve? [pglite](https://pglite.dev) is a (relatively) new tool that allows running postgres in WASM (which allows it to run in-memory, or in the browser)...
### Acknowledgements - [X] I read the documentation and searched existing issues to avoid duplicates - [X] I understand this is a **bug tracker** and anything other than a proven...
See #682 for more
`fileNameWithLine` is meant to be part of the settings as per the docs, but it was accidentally omitted in the type definition. To avoid this kind of error, I also...
**Describe the bug** Currently, `tslog` will request the `process.cwd` (even if it's not required for the log format) used. You can see this [here](https://github.com/fullstack-build/tslog/blob/9a5d15696ae813142b64a21f42987e59e7115448/src/runtime/nodejs/index.ts#L88) The problem with this is that...