inline-worker
v1.1.0
Published
utility to create a universal WebWorker from a function
Downloads
45,315
Readme
inline-worker
JavaScript utility to create a universal WebWorker from a function
Installation
$ npm install inline-worker
API
InlineWorker
constructor(func: function, [ self: object ]): Worker | InlineWorker
Example
const InlineWorker = require("inline-worker");
let self = {};
let worker = new InlineWorker(function(self) {
self.onmessage = function(e) {
postMessage(self.bark(e.data)); // (2) hello!!
};
// worker internal function
self.bark = function(msg) {
return msg + "!!";
};
}, self);
worker.onmessage = function(e) {
console.log(e.data + "!!"); // (3) hello!!!!
};
worker.postMessage("hello"); // (1)
What is worker
instance?
if (global.window === global) {
assert(worker instanceof Worker); // in the borwser
} else {
assert(worker instanceof InlineWorker); // in the node.js
}
You can test worker internal functions via self
.
assert(self.bark("bye") === "bye!!");
License
MIT