Skip to content

ivaylopivanov/wamp-server

Folders and files

NameName
Last commit message
Last commit date

Latest commit

bc8a6f7 Â· Jul 7, 2021

History

73 Commits
Feb 17, 2018
Feb 25, 2018
Mar 4, 2018
Mar 4, 2018
Sep 30, 2018
Mar 4, 2018
Feb 25, 2018
Jul 30, 2016
Feb 25, 2018
Jul 31, 2016
Sep 9, 2019
Sep 9, 2019
Jul 6, 2021
Jul 30, 2016
Feb 25, 2018
Jul 30, 2016

Repository files navigation

WAMP Router Server

NPM version Build Status Test coverage Greenkeeper badge

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-server

Usage

'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 dev

Tests

To run the test suite, first install the dependencies, then run npm test:

$ npm install
$ npm test

License

MIT