Socket
Socket
Sign inDemoInstall

ssl-express-www

Package Overview
Dependencies
63
Maintainers
1
Versions
35
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ssl-express-www

Force SSL (HTTPS) when HTTP is required using Express (Nodejs). Remove www and trailing slash on domain.


Version published
Maintainers
1
Created

Readme

Source

Force SSL using Express

Force SSL (HTTPS) when HTTP is required using Express (Nodejs). Remove www and trailing slash on domain.

project-version downloads npm mocha Build Status

Installation

npm i ssl-express-www

Usage CommonJS

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

app.use(secure);

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

Usage ES6

Transpile it with Babel

import express from 'express';
import secure from 'ssl-express-www';

const app = express();

app.use(secure);

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

Solve LF replace to CRLF on Git

This command will solve the problem with linebreak replacement on git commit.

git config --global core.autocrlf input

Contributing

Babel@6 doesn't export default module.exports any more.

npm i -D babel-plugin-add-module-exports

Usage in file .babelrc

{
  "presets": ["env"],
  "plugins": [
    "add-module-exports"
  ]
}

Update package version

View usage | view

npm version patch -m "Bumped to version %s"

v2.1.1

npm version minor

v1.2.1

npm version major

v3.1.1

License

This project is licensed under the MIT License - see the LICENSE file for details

Keywords

FAQs

Last updated on 01 Oct 2018

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc