annotate node_modules/node-osc/package.json @ 101:52e44ee1c791 tip master

enabled all scores in autostart script
author Rob Canning <rc@kiben.net>
date Tue, 21 Apr 2015 16:20:57 +0100
parents cd921abc8887
children
rev   line source
rob@77 1 {
rob@77 2 "name": "node-osc",
rob@77 3 "description": "pyOSC inspired library",
rob@77 4 "version": "0.2.1",
rob@77 5 "main": "index",
rob@77 6 "athor": {
rob@77 7 "name": "Myles Borins",
rob@77 8 "email": "myles.borins@gmail.com"
rob@77 9 },
rob@77 10 "contributors": [
rob@77 11 {
rob@77 12 "name": "Hans Hübner",
rob@77 13 "email": "hans.huebner@gmail.com"
rob@77 14 },
rob@77 15 {
rob@77 16 "name": "Andy Smith",
rob@77 17 "email": "jabber@term.ie"
rob@77 18 }
rob@77 19 ],
rob@77 20 "dependencies": {
rob@77 21 "jspack": "0.0.1",
rob@77 22 "osc-min": "0.0.5"
rob@77 23 },
rob@77 24 "keywords": [
rob@77 25 "osc",
rob@77 26 "udp"
rob@77 27 ],
rob@77 28 "repository": {
rob@77 29 "type": "git",
rob@77 30 "url": "git://github.com/TheAlphaNerd/node-osc.git"
rob@77 31 },
rob@77 32 "readme": "--------\nnode-osc\n--------\n\nA very basic OSC client (so far) implementation based heavily on pyOSC_.\n\n\nRelies on current trunk of node.js for the dgram library.\n\n.. _pyOSC: https://trac.v2.nl/wiki/pyOSC\n\nInstall using npm\n\nnpm install node-osc\n\nExample\n-------\n\nSending OSC messages:\n\n::\n \n var osc = require('node-osc');\n \n var client = new osc.Client('127.0.0.1', 3333);\n client.send('/oscAddress', 200);\n \nListening for OSC messages:\n\n::\n \n var osc = require('./lib/osc');\n \n var oscServer = new osc.Server(3333, '0.0.0.0');\n oscServer.on(\"message\", function (msg, rinfo) {\n \tconsole.log(\"TUIO message:\");\n \tconsole.log(msg);\n });\n \nExample of received TUIO (based on OSC) messages:\n\n::\n\n TUIO message:\n [ [ '/tuio/2Dcur', 'alive', 3 ],\n [ '/tuio/2Dcur',\n 'set',\n 3,\n 0.5218750238418579,\n 0.3895833194255829,\n 0,\n 0,\n 0 ],\n [ '/tuio/2Dcur', 'fseq', 2842 ] ]\n \n TUIO message:\n [ [ '/tuio/2Dcur', 'alive', 3 ],\n [ '/tuio/2Dcur',\n 'set',\n 3,\n 0.5218750238418579,\n 0.3895833194255829,\n 0,\n 0,\n 0 ],\n [ '/tuio/2Dcur', 'fseq', 2843 ] ]\n \n TUIO message:\n [ [ '/tuio/2Dcur', 'alive' ],\n [ '/tuio/2Dcur', 'fseq', 2844 ] ]\n\nLicensing\n---------\n\nLGPL. Please see the file lesser.txt for details.\n",
rob@77 33 "readmeFilename": "README.rst",
rob@77 34 "bugs": {
rob@77 35 "url": "https://github.com/TheAlphaNerd/node-osc/issues"
rob@77 36 },
rob@77 37 "_id": "node-osc@0.2.1",
rob@77 38 "dist": {
rob@77 39 "shasum": "4a541e227de41aece9968457bad81c315c686336"
rob@77 40 },
rob@77 41 "_from": "node-osc@",
rob@77 42 "_resolved": "https://registry.npmjs.org/node-osc/-/node-osc-0.2.1.tgz"
rob@77 43 }