App Server
A wrapper around a common configuration for an express application server. This module wraps the following modules:
It setup sane defaults for these modules and exposes simple confiuration options for tweaking. But overall it is an opinionated method for setting up an express service.
Install
$ npm install --save app-server
Basic Usage
var Server = require('app-server');
var server = new Server();
server.app.post('/', function(req, res) {
res.status(200).json({hello: 'world'})
});
server.start();