Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

node-osc

Package Overview
Dependencies
Maintainers
1
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-osc - npm Package Compare versions

Comparing version 0.3.1 to 1.0.0

.eslintrc

2

examples/client.js

@@ -1,2 +0,2 @@

var osc = require('../lib/osc.js');
var osc = require('../lib');

@@ -3,0 +3,0 @@ var client = new osc.Client('127.0.0.1', 3333);

@@ -1,8 +0,9 @@

var osc = require('../lib/osc.js');
var util = require('util');
'use strict';
var osc = require('../lib');
var oscServer = new osc.Server(3333, '0.0.0.0');
oscServer.on("message", function (msg, rinfo) {
console.log("Message:");
oscServer.on('message', function (msg) {
console.log('Message:');
console.log(msg);
});
});
{
"name": "node-osc",
"description": "pyOSC inspired library",
"version": "0.3.1",
"main": "index",
"athor": {
"name": "Myles Borins",
"email": "myles.borins@gmail.com"
},
"contributors": [
{
"name": "Hans Hübner",
"email": "hans.huebner@gmail.com"
},
{
"name": "Andy Smith",
"email": "jabber@term.ie"
}
],
"dependencies": {
"jspack": "0.0.1",
"osc-min": "0.0.5"
},
"keywords": [
"osc",
"udp"
],
"repository": {
"type": "git",
"url": "git://github.com/TheAlphaNerd/node-osc.git"
}
"name": "node-osc",
"description": "pyOSC inspired library",
"version": "1.0.0",
"main": "lib/index.js",
"author": {
"name": "Myles Borins",
"email": "myles.borins@gmail.com"
},
"scripts": {
"test": "npm run lint && npm run tape",
"tape": "tape test/*.js | tap-spec",
"watch": "nodemon --ignore node_modules/ -e js,json --exec 'npm test'",
"lint": "eslint **/*.js"
},
"contributors": [
{
"name": "Hans Hübner",
"email": "hans.huebner@gmail.com"
},
{
"name": "Andy Smith",
"email": "jabber@term.ie"
},
{
"name": "Myles Borins",
"email": "myles.borins@gmail.com"
}
],
"dependencies": {
"jspack": "0.0.4",
"osc-min": "^0.2.0"
},
"keywords": [
"osc",
"udp"
],
"repository": {
"type": "git",
"url": "git://github.com/TheAlphaNerd/node-osc.git"
},
"devDependencies": {
"eslint": "^0.21.1",
"nodemon": "^1.2.1",
"tap-spec": "^3.0.0",
"tape": "^4.0.0"
}
}
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