Socket
Socket
Sign inDemoInstall

ssl-express-www

Package Overview
Dependencies
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ssl-express-www

It forces HTTPS when HTTP is required, remove www and remove slash-end from url.


Version published
Weekly downloads
2K
decreased by-13.51%
Maintainers
1
Weekly downloads
 
Created
Source

Force HTTPS in Express

It forces HTTPS when HTTP is required, remove www and remove slash-end from url.

Installation

npm i ssl-express-www

Usage

const express = require('express');
const secure = require('ssl-express-www');
const app = express();

// It forces HTTPS when HTTP is required
app.use(secure);

let port = process.env.PORT || 3000;
app.listen(port, () => console.log('Server listening.'));

Contributing

If you know about JavaScript / Nodejs / Unit tests. You should probably help me to improve this code, thanks! =D

Keywords

FAQs

Package last updated on 13 Jan 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc