Package Exports
- wamp-server
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (wamp-server) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
WAMP Router Server
Implemented by following the WAMP standards.
Compatible with Autobahn JS
Currently only the Basic Profile is implemented.
- hello
- welcome
- abort
- goodbye
- error
- publish
- published
- subscribe
- subscribed
- unsubscribe
- unsubscribed
- event
- call
- result
- register
- registered
- unregister
- unregistered
- invocation
- yield
Why
The other two node implementations have memory leaks.
Note
The current source is written in Typescript and the release is the compiled javascript version. Once ES6 modules land in node, the only significant difference between the src/ and the release/ will be the types. At some point, the implementation may be moved to node completely.
Installation
$ npm install wamp-serverUsage
'use strict';
const WAMP_SERVER = require('wamp-server');
const SERVER = new WAMP_SERVER({
port: 8000,
realms: ['com.example.inge'], // array or string
});
// to close the server - SERVER.close();Debugging
For debugging you can use the DEBUG variable - DEBUG=wamp:*
Contributing
Any contribution will be highly appreciated
Development
$ npm install
$ typings install
$ npm run devTests
To run the test suite, first install the dependencies, then run npm test:
$ npm install
$ npm test