express-vanilla

0.5.3 • Public • Published

Quick Start

This is a standard expressjs server. By defaul it serves on all interfaces and on port 3000.

npm i express-vanilla

Create an index.js file:

const initialiseServer = require('express-vanilla')
 
// this argument is optional, you can pass null or omit it altogether.
const options = {
  // alternative to process.env.PORT, default assumes docker deployment
  port: '3000', 
  // alternative to process.env.HOST, default mounts to all interfaces
  host: '0.0.0.0',
  // An optional mount path for serving static files. Any requests for 
  // assets will be served from ./public such that 
  // https://server/mountpath/index.html 
  // will resolve to ./public/index.html etc 
  mountpath: '', 
  // optional name to include in log messages
  serverName: 'Express Vanilla'
  bodyParserOpts: {
    // true - to enable body parsing. False to disable 
    enable: true, 
    // if enable=true, limit size of body e.g. 1kb, 1mb. Will error if 
    // limit exceeded. Default is no limit
    limit: /no limit/   
  },
  morganOpts: {},
  // do not allow empty bodies in PUT, POST, and PATCH HTTP methods
  disallowEmptyBody: 'false' 
}
 
const routes = [
  middleware1,
  middleware2,
  routes1,
  routes2,
]
 
const server = initialiseServer(options, routes)
 

Details

It assumes that static content resolves to the ./public folder. i.e. http://hostname:port/index.html would resolve to ./index.html

You can configure the interface and port with the following env vars:

PORT=3001
HOST=10.19.0.1

Using this server with TLS

Google and Chrome are beginning to score non-TLS sites lower and warning of insecure access. This is primarily why the default port is not 80. The choice of port 3000 is informed by Docker microservices where one or two ports exposed is sufficient and 3000 is usually the service endpoint.

I suggest implementing a reverse proxy to provide SSL termination. Nginx works well, is easy to set up and maintain, and is performant. It is suitable for most cases where traffic is reasonable (don't know exact figures - I would expect a setup to cope fine for 300 requests per minute). Any higher loads should be possible to resolve with a load balancer and additional servers.

The middleware and routers will be applied to the server in the order they have been added into the array.

The initialiser returns the express listener which you can attached event handlers to and request a graceful shutdown, etc.

Default request handlers

It implements an 404 handler for routes which aren't found. If you are creating an SPA, you may prefer to return a default page by appending a router which lists .get('*', {function}) as one of its routers.

It implements a standard error handler. You can override it by adding an alternative in the last array element

Package Sidebar

Install

npm i express-vanilla

Weekly Downloads

0

Version

0.5.3

License

MIT

Unpacked Size

133 kB

Total Files

9

Last publish

Collaborators

  • chanoch