@stdlib/net-http-server
TypeScript icon, indicating that this package has built-in type declarations

0.2.1 • Public • Published
About stdlib...

We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.

The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.

When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.

To join us in bringing numerical computing to the web, get started by checking us out on GitHub, and please consider financially supporting stdlib. We greatly appreciate your continued support!

HTTP Server

NPM version Build Status Coverage Status

HTTP server.

Installation

npm install @stdlib/net-http-server

Usage

var httpServer = require( '@stdlib/net-http-server' );

httpServer( [options,] [ requestListener] )

Returns a function to create an HTTP server.

var createServer = httpServer();

To bind a request callback to a server, provide a requestListener.

function requestListener( request, response ) {
    console.log( request.url );
    response.end( 'OK' );
}

var createServer = httpServer( requestListener );

The function accepts the following options:

  • port: server port. Default: 0 (i.e., randomly assigned).
  • maxport: max server port when port hunting. Default: maxport=port.
  • hostname: server hostname.
  • address: server address. Default: 127.0.0.1.

To specify server options, provide an options object.

var opts = {
    'port': 7331,
    'address': '0.0.0.0'
};

var createServer = httpServer( opts );

To specify a range of permissible ports, set the maxport option.

var opts = {
    'maxport': 9999
};

var createServer = httpServer( opts );

When provided a maxport option, a created server will search for the first available port on which to listen, starting from port.

createServer( done )

Creates an HTTP server.

function done( error, server ) {
    if ( error ) {
        throw error;
    }
    console.log( 'Success!' );
    server.close();
}

var createServer = httpServer();

createServer( done );

Notes

  • Port hunting can be useful in a microservice deployment. When a port is randomly assigned (options.port=0), if a server fails and is restarted, the server is unlikely to bind to its previous port. By allowing a constrained search, assuming no lower ports within a specified range have freed up in the meantime, the likelihood of listening on the same port is increased. A server can typically restart and bind to the same port faster than binding to a new port and re-registering with a microservice registry, thus minimizing possible service interruption and downtime.

Examples

var proc = require( 'process' );
var http = require( 'http' );
var httpServer = require( '@stdlib/net-http-server' );

function done( error, server ) {
    if ( error ) {
        throw error;
    }
    http.get( 'http://127.0.0.1:7331/beep/boop', onResponse );
}

function onResponse() {
    console.log( 'Success!' );
    proc.exit( 0 );
}

function onRequest( request, response ) {
    console.log( request.url );
    response.end( 'OK' );
}

// Specify server options...
var opts = {
    'port': 7331,
    'maxport': 9999,
    'hostname': 'localhost'
};

// Create a function for creating an HTTP server...
var createServer = httpServer( opts, onRequest );

// Create a server:
createServer( done );

Notice

This package is part of stdlib, a standard library for JavaScript and Node.js, with an emphasis on numerical and scientific computing. The library provides a collection of robust, high performance libraries for mathematics, statistics, streams, utilities, and more.

For more information on the project, filing bug reports and feature requests, and guidance on how to develop stdlib, see the main project repository.

Community

Chat


License

See LICENSE.

Copyright

Copyright © 2016-2024. The Stdlib Authors.

Package Sidebar

Install

npm i @stdlib/net-http-server

Homepage

stdlib.io

Weekly Downloads

14

Version

0.2.1

License

Apache-2.0

Unpacked Size

47.2 kB

Total Files

13

Last publish

Collaborators

  • stdlib-bot
  • kgryte
  • planeshifter
  • rreusser