uvm

WebJar for uvm

License

License

GroupId

GroupId

org.webjars.npm
ArtifactId

ArtifactId

uvm
Last Version

Last Version

1.7.6
Release Date

Release Date

Type

Type

jar
Description

Description

uvm
WebJar for uvm
Project URL

Project URL

http://webjars.org
Source Code Management

Source Code Management

https://github.com/postmanlabs/uvm

Download uvm

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.npm/uvm/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>uvm</artifactId>
    <version>1.7.6</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/uvm/
implementation 'org.webjars.npm:uvm:1.7.6'
// https://jarcasting.com/artifacts/org.webjars.npm/uvm/
implementation ("org.webjars.npm:uvm:1.7.6")
'org.webjars.npm:uvm:jar:1.7.6'
<dependency org="org.webjars.npm" name="uvm" rev="1.7.6">
  <artifact name="uvm" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='uvm', version='1.7.6')
)
libraryDependencies += "org.webjars.npm" % "uvm" % "1.7.6"
[org.webjars.npm/uvm "1.7.6"]

Dependencies

compile (4)

Group / Artifact Type Version
org.webjars.npm : flatted jar [2.0.1]
org.webjars.npm : inherits jar [2.0.4]
org.webjars.npm : lodash jar [4.17.15]
org.webjars.npm : uuid jar [3.3.2]

Project Modules

There are no modules declared in this project.

UVM Build Status codecov

Module that exposes an event emitter to send data across contexts (VM 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');
org.webjars.npm

Postman Inc.

Versions

Version
1.7.6
1.7.0