uvm

4.0.0 • Public • Published

UVM CI codecov

Module that exposes an event emitter to send data across contexts (Worker threads in Node.js and Web Workers in browser).

Installation

UVM can be installed using NPM or directly from the git repository within your NodeJS projects. If installing from NPM, the following command installs the module and saves in your package.json

$ npm install uvm --save

Usage

let uvm = require('uvm'),
    context;

context = uvm.spawn({
    bootCode: `
        bridge.on('loopback', function (data) {
            bridge.dispatch('loopback', data + ' World!');
        });
    `
});

context.on('loopback', function (data) {
    console.log(data); // Hello World!
});

context.dispatch('loopback', 'Hello');

Package Sidebar

Install

npm i uvm

Weekly Downloads

561,224

Version

4.0.0

License

Apache-2.0

Unpacked Size

40.3 kB

Total Files

13

Last publish

Collaborators

  • shamasis
  • kamalaknn
  • kunagpal
  • codenirvana
  • appurvamurawat