An open API service indexing awesome lists of open source software.

https://github.com/includable/express-middleware-https

HTTPS redirect middleware.
https://github.com/includable/express-middleware-https

Last synced: 3 months ago
JSON representation

HTTPS redirect middleware.

Awesome Lists containing this project

README

          

# middleware-https

Simple force HTTPS redirect middleware, meant for use behind a proxy (e.g. Heroku).

## Installation

```sh
npm i @includable/middleware-https
```

## Usage

```js
const express = require('express')
const https = require('@includable/middleware-https')

app.use(https('example.com')) // leave out parameter to apply to all domains

app.listen(process.env.PORT || 3000, () => console.log(`Example app running.`))
```