Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@holisticon/worker-loader
Advanced tools
npm i -D worker-loader
or
yarn add worker-loader --dev
Import the worker file:
// main.js
var MyWorker = require("worker-loader!./file.js");
var worker = new MyWorker();
worker.postMessage({a: 1});
worker.onmessage = function(event) {...};
worker.addEventListener("message", function(event) {...});
You can also inline the worker as a blob with the inline
parameter:
var MyWorker = require("worker-loader?inline!./myWorker.js");
Inline mode will also create chunks for browsers without supporting of inline workers,
to disable this behavior just set fallback
parameter as false
:
var MyWorker = require("worker-loader?inline&fallback=false!./myWorker.js");
To set a custom name for the output script, use the name
parameter. The name may contain the string [hash]
,
which will be replaced with a content-dependent hash for caching purposes. For example:
var MyWorker = require("worker-loader?name=outputWorkerName.[hash].js!./myWorker.js");
The worker file can import dependencies just like any other file:
// file.js
var _ = require('lodash')
var o = {foo: 'foo'}
_.has(o, 'foo') // true
// Post data to parent thread
self.postMessage({foo: 'foo'})
// Respond to message from parent thread
self.addEventListener('message', function(event){ console.log(event); });
You can even use ES6 modules if you have the babel-loader configured:
// file.js
import _ from 'lodash'
let o = {foo: 'foo'}
_.has(o, 'foo') // true
// Post data to parent thread
self.postMessage({foo: 'foo'})
// Respond to message from parent thread
self.addEventListener('message', (event) => { console.log(event); });
To integrate with TypeScript, you will need to define a custom module for the exports of your worker. You will also need to cast the new worker as the Worker
type:
typings/custom.d.ts
declare module "worker-loader!*" {
const content: any;
export = content;
}
App.ts
import * as MyWorker from "worker-loader!../../worker";
const worker: Worker = new MyWorker();
Tobias Koppers |
Joshua Wiens |
Bogdan Chadkin |
FAQs
worker loader module for webpack
We found that @holisticon/worker-loader demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.