webworkerify
launch a web worker that can require() in the browser with browserify
example
First, a main.js
file will launch the worker.js
and print its output:
var work = require('webworkerify');
var w = work(require('./worker.js'));
w.addEventListener('message', function (ev) {
console.log(ev.data);
});
then worker.js
can require()
modules of its own. The worker function lives
inside of the module.exports
:
var gamma = require('gamma');
module.exports = function () {
setInterval(function () {
var r = 1 / Math.random() - 1;
postMessage([ r, gamma(r) ]);
}, 500);
};
Now after browserifying this example, the console will
contain output from the worker:
[ 0.09162078520553618, 10.421030346237066 ]
[ 2.026562457360466, 1.011522336481017 ]
[ 3.1853125018703716, 2.3887589540750214 ]
[ 5.6989969260510005, 72.40768854476167 ]
[ 8.679491643020487, 20427.19357947782 ]
[ 0.8528139834191428, 1.1098187157762498 ]
[ 8.068322137547542, 5785.928308309402 ]
...
methods
var work = require('webworkerify')
var w = work(require(modulePath))
Return a new
web worker
from the module at modulePath
.
The file at modulePath
should export its worker code in module.exports
as a
function that will be run with no arguments.
Note that all the code outside of the module.exports
function will be run in
the main thread too so don't put any computationally intensive code in that
part. It is necessary for the main code to require()
the worker code to fetch
the module reference and load modulePath
's dependency graph into the bundle
output.
install
With npm do:
npm install webworkerify
license
MIT