New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

uvm

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uvm - npm Package Compare versions

Comparing version 0.0.0 to 1.0.0

.jsdoc-config.json

14

package.json
{
"name": "uvm",
"version": "0.0.0",
"version": "1.0.0",
"description": "Universal Virtual Machine for Node and Browser",

@@ -9,2 +9,5 @@ "main": "index.js",

},
"browser": {
"./lib/uvm/bridge.js": "./lib/uvm/bridge.browser.js"
},
"scripts": {

@@ -25,5 +28,8 @@ "test-browser": "node npm/test-browser.js",

"license": "Apache-2.0",
"dependencies": {
"inherits": "2.0.3",
"lodash": "4.17.2"
},
"devDependencies": {
"async": "2.1.2",
"browserify": "13.1.1",
"colors": "1.1.2",

@@ -45,3 +51,2 @@ "editorconfig": "0.13.2",

"karma-mocha-reporter": "2.2.0",
"lodash": "4.17.1",
"mocha": "3.1.2",

@@ -51,5 +56,4 @@ "nsp": "2.6.2",

"parse-gitignore": "0.3.1",
"shelljs": "0.7.5",
"recursive-readdir": "^2.1.0",
"watchify": "3.7.0"
"shelljs": "0.7.5"
},

@@ -56,0 +60,0 @@ "repository": {

# uvm
Module that exposes an event emitter to send data across contexts (vm in node and iframe in browser)
## Usage
```
var uvm = require('uvm');
uvm.createHost({
bootstrap: `bridge.on('ping', function () {
bridge.send('pong', Date.now())
});'
}, function (err, bridge) {
bridge.on('pong', console.log);
bridge.send('ping');
});
```
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc