Marcel Laverdet
Marcel Laverdet
Jobs max sounds fine to me if you'd like submit a PR.
I'm not sure. You can npm install from github by the way.
Very cool, and congratulations on your publication!
you need to pass --no-node-snapshot. Also don't use the Snapshot feature for anything other than defining functions.
nodejs uses a shared v8 snapshot heap so that worker threads can share memory despite being separate isolates. This is a per-process option and cannot be changed after the process...
I can't run your example. Can you try again without ts-node, and also you need to tell me what platform and nodejs version you're using.
I copied the 2 files you posted and ran `npm install; npm run dev` and got some kind of error (which I don't remember). Ideally an example should be a...
Are you using `createSnapshot`? I can't recommend the snapshot feature anymore, this seems to be totally broken on v8's end except for the case of very controlled host libraries. Instead...
That would be really surprising if true, but stranger things have happened. It doesn't look like you're actually awaiting the promise here. I bet if you log `result->State()` you will...
Ah ok then. Well it sounds like all that's really needed here is an update to the documentation in that case. To be honest the "return the result of the...