http-server-auth
v1.0.6
Published
A simple HTTP server with Basic Authentication
Maintainers
Readme
http-server-auth: a command-line http server with basic auth
http-server-auth is a simple, zero-configuration command-line http server with auth.
Installing globally:
Installation via npm:
npm install http-server-auth -gThis will install http-server-auth globally so that it may be run from the command line.
Usage:
http-server-auth [options]Exemple using auth :
N.B : If you use special chars and passing it using arguments, you must mind to escape them.
http-server-auth --username admin --password password -P 1234Installing as a node app
mkdir myapp
cd myapp/
npm install http-server-authUsage
Starting http-server locally
node lib/http-server-authAvailable Options:
-p Port to use (defaults to 3000)
--username Username for basic authentication (defaults to 'admin')
--password Password for basic authentication (defaults to 'password')
--path Path to static page (defaults '/')
-h or --help Print this list and exit.
