Skip to content

Instantly share code, notes, and snippets.

@xbill82
Created April 4, 2016 09:54
Show Gist options
  • Save xbill82/056dc6d02db484f611c66fbdeff7f61a to your computer and use it in GitHub Desktop.
Save xbill82/056dc6d02db484f611c66fbdeff7f61a to your computer and use it in GitHub Desktop.
Kuzzle SDK 101
var Kuzzle = require('kuzzle-sdk');
var kuz = new Kuzzle('http://workshop.challenge.kuzzle.io:7512', {defaultIndex: 'klack'});
kuz.dataCollectionFactory('messages').publishMessage({
hello: "world"
});
var Kuzzle = require('kuzzle-sdk');
var kuz = new Kuzzle('http://workshop.challenge.kuzzle.io:7512', {defaultIndex: 'klack'});
kuz
.dataCollectionFactory('messages')
.subscribe({}, function(err, result) {
console.log(result)
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment