watch-spa-http-server
v0.9.0
Published
a simple command-line http server with the built-in zero-configuration automatic page reloads.
Downloads
8
Readme
watch-spa-http-server: a command-line http server
watch-spa-http-server
is a simple, zero-configuration command-line http server.
It simply injects a very small javascript include right before the body tag of your HTML documents, whereby a websocket connection is made on the host, triggering a reload of the page. Currently this happens when any item in the folder changes but it may soon be made to be specific relevant to the loaded document.
Installing globally:
Installation via npm
. If you don't have npm
yet:
curl https://npmjs.org/install.sh | sh
Once you have npm
:
npm install -g watch-spa-http-server
This will install watch-spa-http-server
globally so that it may be run from the command line.
Usage:
watch-spa-http-server [path] [options]
(or alternatively, whs or watchhttpserver)
[path]
defaults to ./public
if the folder exists, and ./
otherwise.
Usage
Starting watch-spa-http-server locally
node bin/watch-spa-http-server
Now you can visit http://localhost:8080 to view your server
Available Options:
-p
Port to use (defaults to 8080)
-a
Address to use (defaults to 0.0.0.0)
-d
Show directory listings (defaults to 'True')
-i
Display autoIndex (defaults to 'True')
--gzip
When enabled (defaults to 'False') it will serve ./public/some-file.js.gz in place of ./public/some-file.js when a gzipped version of the file exists and the request accepts gzip encoding.
-e
or --ext
Default file extension if none supplied (defaults to 'html')
-s
or --silent
Suppress log messages from output
--cors
Enable CORS via the Access-Control-Allow-Origin
header
--push-state
Enable push state for single page apps. All 404's are sent to /index.html
-o
Open browser window after staring the server
-S
or --ssl
Enable https.
-C
or --cert
Path to ssl cert file (default: cert.pem).
-K
or --key
Path to ssl key file (default: key.pem).
-h
or --help
Print this list and exit.