static-https-server
v1.0.1
Published
A zero-conf development server to static files over HTTPS
Downloads
37
Readme
About
A zero-conf development server to static files over HTTPS, in the mold of Python's SimpleHTTPServer.
Installation & Usage:
- 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 tolocalhost: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.