Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

9 Commits

Repository files navigation

node-worker - 0.0.1

node-worker is an implementation of the WebWorker API for node.js. http://www.whatwg.org/specs/web-workers/current-work/

Example

var Worker = require("../lib/worker").Worker;
var worker = new Worker("worker.js");
worker.postMessage({
hello: "world"
});
worker.onmessage = function (msg) {
sys.puts(msg.hello);
};
worker.addListener("message", function (msg) {
sys.puts(msg.hello);
worker.terminate();
});

Example Worker File

var worker = require("worker").worker;
worker.onmessage = function (msg) {
worker.postMessage({
hello: "mother"
});
};

About

An implementation of the WebWorker API for node.js

Resources

Stars

167 stars

Watchers

3 watching

Forks

Releases

Packages

Used by

Contributors

Languages