Use a simple API to connect to a hNode and do Publish Subscribe using the Hubiquitus protocol. It is compatible with your web app and your Node.JS project.
To communicate with the server it can use socket.io. To use it's full potential, use it with hubiquitus-node.
You can use HubiquitusJS in two completely different ways.
- Inside your web-browser as an API to retrieve data for your web app.
- As a node module for your Node.JS project.
- Download the code
git://github.com/hubiquitus/hubiquitusjs.git
- In your HTML File add
<!-- Imports necessary for hAPI -->
<!-- Tag for socket.io is only needed if you will use it as transport-->
<script src='../../lib/transports/socketio/socket.io.js'></script>
<script data-main="../../hubiquitus.js" src='../../lib/require.js'></script>
<!-- Your script -->
<script src="my_script.js"></script>
- In my_script.js put the following
//Connect to a hNode
hClient.connect('username', 'password', 'hOptions');
- Install using NPM:
npm install git://github.com/hubiquitus/hubiquitusjs.git
- Import the API and use it!
//Import hClient
var hClient = require('hubiquitusjs').hClient;
//Connect to a hNode using default configuration.
hClient.connect('username', 'password', 'hOptions');
To receive messages in realtime, use hClient.onMessage
, you can set this function that
receives a message to whatever you like. For more information about available data received
in real time see Callback
Once connected it is also possible to execute other commands:
hClient.subscribe(channel, cb); //Channel to subscribe to using current credentials.
hClient.unsubscribe(channel, cb); //Channel to unsubscribe.
hClient.send(hMessage, cb); //Sent an hMessage.
hClient.getLastMessages(channel, cb); //Get last messages from 'channel'
hClient.disconnect(); //Disconnects from the Server.
hClient.buildMessage(actor, type, payload, options); //Create a valid hMessage
In all cases, channel
is a string with the name that identifies the node.
Note: a list of all available operations is in Functions
An hOptions
object can be sent to the connect function as the last argument.
The keys in this object and an explanation for each one of them can be
found in the hOptions page.
There are examples of how to create a hOptions object in the examples/
folder.
Copyright (c) Novedia Group 2012.
This file is part of Hubiquitus
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
You should have received a copy of the MIT License along with Hubiquitus. If not, see MIT licence.