runsv-http
v2.0.0
Published
A runsv http server wrapper
Downloads
24
Readme
runsv-http
A runsv wrapper around http.Server.
Usage
Simple express app
const runsv = require('runsv').create();
const createHTTPService = require('runsv-http');
const express = require('express');
const app = express();
const PORT = 3000;
/* set up your app */
app.get('/', (req, res) => res.end('hello'));
// configure the runsv-http service
const myWeb = createHTTPService('myWeb') // optionally you can set a custom name
.createServer(app) // same signature as http.createServer()
.listen(PORT); // same signature as server.listen. DO NOT include the callback.
runsv.addService(myWeb);
runsv.start(function(err){
const {myWeb} = runsv.getClients();
console.log(`listening at port ${PORT}`);
});
//...
API
In node you usually create an instance of an http server like this:
const http = require('http');
const port = 3000;
function listener(req, res){
res.end('hello');
}
const server = http.createServer(listener);
server.listen(port, function(err){
console.log(`listening at ${port}`);
});
Both createServer()
and listen()
accept optional params.
The goal of this API is to be as close as possible to the original node API.
const runsv = require('runsv').create();
const port = 3000;
const createService = require('runsv-http');
function listener(req, res){
res.end('hello');
}
const server = createService()
.createServer(listener)
.listen(port);
runsv.addService(server);
runsv.start(function(err){
console.log(`listening at ${port}`);
});
//...
#createService([name])
returns arunsv
service wrapper around original nodejshttp.server
.[name='http']
runsv service name. Optional. By default is http.- Returns: a
runsv
service. This service also exposes#createServer([options][,requestListener])
to mimic original node API
#createServer([options][,requestListener]
mimics the original function- Returns: previous
runsv
service plus the#listen()
function.
- Returns: previous
#listen()
check the options of the original function. Do not include the callback instead, userunsv
start event.- Returns: previous
runsv
service.
- Returns: previous
Examples
Random port
const runsv = require('runsv').create();
const createService = require('runsv-http');
function listener(req, res){
res.end('hello');
}
const server = createService()
.createServer(listener);
runsv.addService(server);
runsv.start(function(err){
const {port} = services.getClients().http.address();
console.log(`listening at ${port}`);
});
//...
Handle on request
const runsv = require('runsv').create();
const createService = require('runsv-http');
function listener(req, res){
res.end('hello');
}
// As with the original http service we can define
// a listener later...
const server = createService();
runsv.addService(server);
runsv.start(function(err){
const {http} = services.getClients();
// Respond to request events
http.on('request', listener);
const {port} = http.address();
console.log(`listening at ${port}`);
});
//...
Stop behavior
#stop(callback)
just invokes server.close([callback]).
Bear in mind that stopping (or closing) this service will not terminate the http server immediately.
http-terminator docs explains why.
When you call server.close(), it stops the server from accepting new connections, but it keeps the existing connections open indefinitely. This can result in your server hanging indefinitely due to keep-alive connections or because of the ongoing requests that do not produce a response. Therefore, in order to close the server, you must track creation of all connections and terminate them yourself.
-- http-terminator docs Tracking the connections and terminating them in a gracefully way is beyond the scope of this service wrapper.
There are modules like http-terminator, http-graceful-shutdown or http-close that will do the heavy lifting for you.
// Example: Gracefully terminating connections with http-close
const runsv = require('runsv').create();
const createHTTPService = require('runsv-http');
const httpClose = require('http-close');
const express = require('express');
const app = express();
app.get('/', (req, res) => res.end('hello'));
const httpService = createHTTPService('server').createServer(app);
runsv.addService(httpService);
runsv.start(function(err){
const {server} = runsv.getClients();
// modify server.close behavior to gracefully terminate connections
httpClose({ timeout: 2000 }, server);
});
//...