🚀 DAY 5 OF LAUNCH WEEK:Introducing Webhook Events for Alert Changes.Learn more →
Socket
Book a DemoInstallSign in
Socket

static-https-server

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

static-https-server

A zero-conf development server to static files over HTTPS

latest
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

About

A zero-conf development server to static files over HTTPS, in the mold of Python's SimpleHTTPServer.

Installation & Usage:

Prereqs: Node >8 and OpenSSL

  • Install: npm install static-https-server -g
  • cd to the directory with your static files.
  • Run static-https-server

Features:

  • Zero config: just run static-https-server in the directory with your static files and navigate to localhost:9000. Because the certs it uses are self signed, you'll need to tell your browser that they're trusted.
  • Zero dependency: Uses only core Node libraries and sys calls to OpenSSL.
  • Trust-Once: The certificates generated by static-https-server are valid for 48 hours. If you ran the app <24 hours ago, it will use those existing certificates. This prevents you from needing to trust new certificates every time you start the server.

Options:

You can specify the port for the server to listen on by passing an argument like this: static-https-server 9001. You can set options for Certificate Signing Requests (such as Common Name, Country, etc. ) by editing the config.txt file in the certs folder.

Thanks: The static file server code was inspired heavily by this StackOverflow answer and I used this guide to walk through adding SSL.

Disclaimer: Don't use this for anything other than local development, obviously.

FAQs

Package last updated on 31 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