1.0.4 • Published 6 years ago

mostly-poplarjs-rest v1.0.4

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

MostlyJS Poplarjs Handler

Build Status

This module provides an express middleware as a RESTful gateway to call microservice writing with mostly-poplarjs.

Usage

Installation

npm install mostly-poplarjs-rest

Quick Example

import express from 'express';
import bodyParser from 'body-parser';
import nats from 'nats';
import mostly from 'mostly-node';
import poplar from 'mostly-poplarjs-rest';

const trans = new mostly(nats.connect()
const app = express()
  .use(bodyParser.json())
  .use(bodyParser.urlencoded({ extended: true }));

trans.ready(() => {
  app.use(poplar(app, trans, '/api'));
  app.listen(process.env.PORT || 3001);
});

License

MIT

1.0.4

6 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago