Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
magic-handler
Advanced tools
A WebWorker linker extension. For creating links between WebWorkers and MainThreads
A WebWorker linker extension. For creating links between WebWorkers and MainThreads
// master.ts
import MagicWorker from 'magic-handler/src';
export interface ISlave extends FunctionsMap {
test(a: string): Promise<string>;
}
class Master extends MagicWorker<ISlave> {
constructor() { super('./slave.js') }
// .log functio will be available for Slave and also for Master.
async log(msg: string) {
console.log('Slave said: ' + msg);
}
}
const master = new Master() // Creates a worker instance.
master.call('goodBoy') // Calls the function Slave.goodBoy( ).
.then(() => master.call('test', 'foo')) // Calls the function Slave.test('foo').
.then(str => console.log(str)); // Logs "a: foo" after 1 second.
export default master;
// slave.ts
import MagicWorker from 'magic-handler/src';
const timeout = (time: number) => new Promise<void>(res => setTimeout(res, time))
class Slave extends MagicWorker {
public async test(a: string) {
await timeout(1000); // Remove after a while and commit performance upgrade!
return `a: ${a}`;
}
public async goodBoy() {
console.log('Yay!')
await this.call('log', 'I am a good boy'); // Call a function from master.
return 'boy';
}
}
const slave = new Slave(); // Create the MagicHandler instance.
FAQs
A WebWorker linker extension. For creating links between WebWorkers and MainThreads
We found that magic-handler 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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.