JSPM

  • Created
  • Published
  • Downloads 29297
  • Score
    100M100P100Q139779F
  • License MIT

A wrapper for creating HTTP/HTTPS servers

Package Exports

  • @loopback/http-server

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@loopback/http-server) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@loopback/http-server

This package implements the HTTP / HTTPS server endpoint for LoopBack 4 apps.

Overview

This is an internal package used by LoopBack 4 for creating HTTP / HTTPS server.

Installation

To use this package, you'll need to install @loopback/http-server.

npm i @loopback/http-server

Usage

@loopback/http-server should be instantiated with a request handler function, and an HTTP / HTTPS options object.

const httpServer = new HttpServer(
  (req, res) => {
    res.end('Hello world');
  },
  {port: 3000, host: ''},
);

Instance methods of HttpServer.

Method Description
start() Starts the server
stop() Stops the server

Instance properties of HttpServer.

Property Description
address Address details
host host of the server
port port of the server
protocol protocol of the server
url url the server

Contributions

Tests

Run npm test from the root folder.

Contributors

See all contributors.

License

MIT