Skip to content

Instantly share code, notes, and snippets.

@ecancino
Created October 8, 2019 15:53
Show Gist options
  • Select an option

  • Save ecancino/e508d35df793b9f41cc53f7650d512e6 to your computer and use it in GitHub Desktop.

Select an option

Save ecancino/e508d35df793b9f41cc53f7650d512e6 to your computer and use it in GitHub Desktop.
WebWorker
console.log("hi!");
// worker.js
this.onmessage = e => {
console.log("worker.js: Message received from main script", e.data);
this.postMessage("Hello main");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment