1.0.0 • Published 9 years ago

wires-client v1.0.0

Weekly downloads
4
License
ISC
Repository
github
Last release
9 years ago

wires-client

Wires-server client

var domain = require('wires-domain'); var client = require('wires-client');

domain.require(function(WiresClient) { WiresClient.send('localhost:3020', { command: "test", token : "1234", message: { hello: "world" }, log: function(log) { console.log("Some log is here", log) } }).then(function(msg) {

  }).catch(function(e) {

  })

})