1.0.0 • Published 8 years ago

express-force-https v1.0.0

Weekly downloads
3,978
License
MIT
Repository
github
Last release
8 years ago

express-force-https

stable

Express middleware to redirect all http requests to https.

Usage

NPM

A simple module to check if the current request is using https. If not, it will redirect to the same route, but using https. It also checks for cases of localhost and disables the redirect if so.

npm i express-force-https
var express = require('express');
var secure = require('express-force-https');

var app = express();
app.use(secure);

License

MIT, see LICENSE.md for details.