Package Exports
- co-web-worker
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (co-web-worker) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Cross-origin web workers
What???
If a site is on domain https://abc.com and wants to run a web worker located at https://xyz.com/dist/worker.js, it won't work.
Cross-origin web workers are not allowed.
So what can be done to get a worker at xyz.com run on abc.com?
Say no more.
Install
$ npm i co-web-workerLight it up
import CrossOriginWorker from 'co-web-worker';
console.log(window.location.origin);
// > https://abc.com
const worker = new CrossOriginWorker('https://xyz.com/dist/worker.js');
console.log(worker instanceof Worker);
// > true
License
Licensed under MIT license. See LICENSE at root of this repo for more information.