JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 215246
  • Score
    100M100P100Q185173F

Serve http and https connections over the same port with node.js

Package Exports

  • @httptoolkit/httpolyglot
  • @httptoolkit/httpolyglot/dist/index.js

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 (@httptoolkit/httpolyglot) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Httpolyglot Build Status Available on NPM

Part of HTTP Toolkit: powerful tools for building, testing & debugging HTTP(S)

A module for serving http and https connections over the same port.

Forked from the original httpolyglot to fix various issues required for HTTP Toolkit, including:

Requirements

Install

npm install @httptoolkit/httpolyglot

Examples

  • Simple usage:
const httpolyglot = require('@httptoolkit/httpolyglot');
const fs = require('fs');

httpolyglot.createServer({
  key: fs.readFileSync('server.key'),
  cert: fs.readFileSync('server.crt')
}, function(req, res) {
  res.writeHead(200, { 'Content-Type': 'text/plain' });
  res.end((req.socket.encrypted ? 'HTTPS' : 'HTTP') + ' Connection!');
}).listen(9000, 'localhost', function() {
  console.log('httpolyglot server listening on port 9000');
  // visit http://localhost:9000 and https://localhost:9000 in your browser ...
});
  • Simple redirect of all http connections to https:
const httpolyglot = require('@httptoolkit/httpolyglot');
const fs = require('fs');

httpolyglot.createServer({
  key: fs.readFileSync('server.key'),
  cert: fs.readFileSync('server.crt')
}, function(req, res) {
  if (!req.socket.encrypted) {
    res.writeHead(301, { 'Location': 'https://localhost:9000' });
    return res.end();
  }
  res.writeHead(200, { 'Content-Type': 'text/plain' });
  res.end('Welcome, HTTPS user!');
}).listen(9000, 'localhost', function() {
  console.log('httpolyglot server listening on port 9000');
  // visit http://localhost:9000 and https://localhost:9000 in your browser ...
});

API

Exports

  • Server - A class similar to https.Server (except instances have setTimeout() from http.Server).

  • createServer(< _object_ >tlsConfig[, < _function_ >requestListener]) - Server - Creates and returns a new Server instance.

How it Works

TLS and HTTP connections are easy to distinguish based on the first byte sent by clients trying to connect. See this comment for more information.