Skip to content

Instantly share code, notes, and snippets.

@gartenfeld
Created October 10, 2015 21:37
Show Gist options
  • Select an option

  • Save gartenfeld/2a9631641e5efac22651 to your computer and use it in GitHub Desktop.

Select an option

Save gartenfeld/2a9631641e5efac22651 to your computer and use it in GitHub Desktop.
// initiating a worker
var karl = new Worker("task.js");
// receiving messages
karl.onmessage = function(event){
console.log(event.data);
};
// in the end
karl.terminate();
function demo() {
// standardized `postMessage` method
postMessage('Hello!');
}
demo();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment