Socket
Socket
Sign inDemoInstall

server-terminate

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

server-terminate

Allow terminating a server in an orderly fashion


Version published
Weekly downloads
59
decreased by-22.37%
Maintainers
1
Weekly downloads
 
Created
Source

server-terminate

TypeScript definition

Allow terminating an HTTP/HTTPS server in an orderly fashion:

  • Immediately closes keep-alive connections that are not being used by any HTTP request.
  • Waits for running HTTP requests to finish before closing their connections.
  • Closes connections with running HTTP requests after a given timeout.

If you want to destroy all open connections without waiting for HTTP requests to finish, use the module server-destroy.

Installation

npm install server-terminate

Usage

var enableTerminate = require('server-terminate');
var http = require('http');

var server = http.createServer(function onRequest(req, res) {
  // Do your stuff here
});
enableTerminate(server).listen(PORT);


// When you want to stop your server...
server.terminate(function(err, terminatedByTimeout) {
  // You get here when all connections have been closed
});

Or if you are using TypeScript:

import * as http from 'http';
import enableTerminate from 'server-terminate';

let server: http.Server = http.createServer(function onRequest(req: http.ServerRequest, res: http.ServerResponse) {
    // Do your stuff here
});
enableTerminate(server).listen(PORT);

// When you want to stop your server...
server.terminate((err, terminatedByTimeout) => {
    // You get here when all connections have been closed
});

You can set a timeout to force connection closing even when they are still being used by running HTTP requests. It is measured in milliseconds and defaults to 30000.

enableTerminate(server, {timeout: 10000}).listen(PORT);

If the server terminates by timeout the second parameter of the callback will be true.

License

MIT

Keywords

FAQs

Package last updated on 22 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc