uvm

WebJar for uvm

Лицензия

Лицензия

Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

uvm
Последняя версия

Последняя версия

1.7.6
Дата

Дата

Тип

Тип

jar
Описание

Описание

uvm
WebJar for uvm
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/postmanlabs/uvm

Скачать uvm

Имя Файла Размер
uvm-1.7.6.pom
uvm-1.7.6.jar 47 KB
uvm-1.7.6-sources.jar 22 bytes
uvm-1.7.6-javadoc.jar 22 bytes
Обзор

Как подключить последнюю версию

<!-- 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"]

Зависимости

compile (4)

Идентификатор библиотеки Тип Версия
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]

Модули Проекта

Данный проект не имеет модулей.

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.

Версии библиотеки

Версия
1.7.6
1.7.0