Hacker News new | ask | show | jobs
by gutino 2163 days ago
If memory is the concern, node V8 Engine has the mode "lite" mode: https://v8.dev/blog/v8-lite

with that perhaps you could spawn node to all threads and do even better in terms performance/memory?

2 comments

V8-lite offers a ~25% reduction in memory usage at best, which is still one or two orders of magnitude more than engines like QuickJS. And you still have to deal with the massively slow and complex build.
Nice, didn't know about this. Will definitely check out.