You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 13, 2023. It is now read-only.
I encountered an issue trying to load node-expat in the context of a worker thread, see the minimal reproduction below:
const{ Worker, isMainThread }=require('worker_threads')if(isMainThread){// Require in the top-level context works fine.require('snappy')worker=newWorker(__filename)}else{// Require in the context of a worker thread throws an exception://// Error: Module did not self-register: ...//require('snappy')}
Hello,
I encountered an issue trying to load
node-expat
in the context of a worker thread, see the minimal reproduction below:I think may be related to schroffl/node-lzo#11
Does this module aim to be usable in the context of a worker threads?
The text was updated successfully, but these errors were encountered: