Marcel Laverdet

Results 24 issues of Marcel Laverdet

When running esbuild in `--bundle` mode it seems to apply the tsconfig.json `paths` mapping before looking at package.json. This causes a condition where *both* the compiled JS output and original...

As of joyent/node@75db1995b6529cb71513a45299e2ba742e7afde9 Script is renamed to NodeScript in process.bindings('eval'). You should be able to fix this for both Node 0.4.x and 0.5.0-pre by changing `var script = process.binding('evals');` to...

I'm opening this issue to discuss the current status of async_hooks in nodejs and how it affects node-fibers. @AndreasMadsen I want your input here about what fibers can do going...

You are publishing a module but not declaring it as such in package.json which makes it impossible to use ``` -> % cat test.mjs import {} from "ip-address"; -> %...

This implements the changes discussed in #153. Feel free to accept or to use this PR as a starting point for your own work. --- This adds support to import...

I recommend adding an overload in `Future` like this: `resolve(): Future;` This will make it so that `Future.resolve()` is a valid invocation which returns a `Future`. Additionally, the default type...

Fibers already maintains a pool on the backend so it seems like you're just wasting cycles here. See: [coroutine.cc](https://github.com/laverdet/node-fibers/blob/master/src/coroutine.cc) You can tweak the pool size dynamically with `Fiber.poolSize`, default is...

# Bug report **What is the current behavior?** When using the experimental module output format import assertions are not emitted in the output. This is related to #2933, @alexander-akait requested...

enhancement
webpack-5

### Describe the bug meros does not correctly decode utf-8 encoded data which is yielded in a different chunk. You need to pass `{ stream: true }` to `TextDecoder#decode`: https://developer.mozilla.org/en-US/docs/Web/API/TextDecoder/decode#options...

I know this project is archived but I wanted to point out some additional work I've done in this space for hot reloading nodejs services: https://github.com/braidnetworks/dynohot In particular I've explored...