WAMP Router Server
npm install wamp-server[![NPM version][npm-image]][npm-url]
[![Build Status][travis-image]][travis-url]
[![Test coverage][coveralls-image]][coveralls-url]

src/ and the release/ will be the types. At some point, the implementation may be moved to node completely.``bash`
$ npm install wamp-server
`js`
'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();
For debugging you can use the DEBUG variable - DEBUG=wamp:*
Any contribution will be highly appreciated
`bash`
$ npm install
$ typings install
$ npm run dev
To run the test suite, first install the dependencies, then run npm test:
`bash``
$ npm install
$ npm test
[npm-image]: https://badge.fury.io/js/wamp-server.svg
[npm-url]: https://npmjs.org/package/wamp-server
[travis-image]: https://travis-ci.org/ivaylopivanov/wamp-server.svg?branch=master
[travis-url]: https://travis-ci.org/ivaylopivanov/wamp-server
[coveralls-image]: https://coveralls.io/repos/ivaylopivanov/wamp-server/badge.svg
[coveralls-url]: https://coveralls.io/r/ivaylopivanov/wamp-server