|
1 rok temu | |
---|---|---|
.. | ||
browsertests | 1 rok temu | |
doc | 1 rok temu | |
example | 1 rok temu | |
lib | 1 rok temu | |
src | 1 rok temu | |
test | 1 rok temu | |
.npmignore | 1 rok temu | |
.travis.yml | 1 rok temu | |
Cakefile | 1 rok temu | |
LICENSE.txt | 1 rok temu | |
README.md | 1 rok temu | |
RELEASE_NOTES.md | 1 rok temu | |
bower.json | 1 rok temu | |
coffeelint.json | 1 rok temu | |
index.js | 1 rok temu | |
package.json | 1 rok temu |
This library provides a STOMP client for Web browser (using Web Sockets) or node.js applications (either using raw TCP sockets or Web Sockets).
The library file is located in lib/stomp.js
(a minified version is available in lib/stomp.min.js
).
It does not require any dependency (except WebSocket support from the browser or an alternative to WebSocket!)
Online documentation describes the library API (including the annotated source code).
Install the 'stompjs' module
$ npm install stompjs
In the node.js app, require the module with:
var Stomp = require('stompjs');
To connect to a STOMP broker over a TCP socket, use the Stomp.overTCP(host, port)
method:
var client = Stomp.overTCP('localhost', 61613);
To connect to a STOMP broker over a WebSocket, use instead the Stomp.overWS(url)
method:
var client = Stomp.overWS('ws://localhost:61614');
For development (testing, building) the project requires node.js. This allows us to run tests without the browser continuously during development (see cake watch
).
$ npm install
To build JavaScript from the CoffeeScript source code:
$ cake build
To run tests:
$ cake test
To continuously run tests on file changes:
$ cake watch
The project contains examples for using stomp.js to send and receive STOMP messages from a server directly in the Web Browser or in a WebWorker.