server-address

Listen to a randomly available port and resolve URLs relative to the server address


Keywords
server, address, listen, http, https
License
MIT
Install
npm install server-address@3.0.1

Documentation

Server Address

NPM version NPM Downloads Build status Test coverage

Listen to a randomly available port and resolve URLs relative to the server address.

Installation

npm install server-address --save

Usage

import { ServerAddress } from "server-address";
import * as express from "express";

const app = express();
const server = new ServerAddress(app);

// Listen to randomly available port.
server.listen();

server.url("/foo"); //=> "http://127.0.0.1:58933/foo"

// Close the server connection.
server.close();

Note: listen and close can optionally accept callback functions.

License

MIT license