Under Heavy Development.
git submodule update --init --recursive
npm install
npm run build:protobuf
npm run build
An SDK example can be found at dist/example/demo.html
after build the project.
Place script
tag before the end of body
<script src="https://cdn.jsdelivr.net/npm/@vnerve/neuronwire@0.0.2/dist/NeuronWire.js"></script>
Sample Code:
// Create Connector
const connector = new NeuronWire.ClientConnector.StompClientConnector({presetServer:0})
connector.activate() // Connect
// Register Subscriber
const subscriber = new NeuronWire.Exchange.Room.StompRoomExchange(connector)
const roomSubID = subscriber.subscribe('21908196','*',(msg)=>{
console.log(JSON.stringify(msg)) // <- Get your decoded message here
})
subscriber.unsubscribe(roomSubID) // unsubscribe
Generated using TypeDoc