1. watch-http-server
a simple command-line http server with the built-in zero-configuration automatic page reloads.
watch-http-server
Package: watch-http-server
Created by: gstack
Last modified: Tue, 28 Jun 2022 21:56:37 GMT
Version: 0.7.6
Downloads: 1,884
Repository: https://github.com/gstack/watch-http-server

Install

npm install watch-http-server
yarn add watch-http-server

watch-http-server: a command-line http server

watch-http-server is a simple, zero-configuration command-line http server.

It simply injects a very small javascript include right before the 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 watch-http-server -g

This will install watch-http-server globally so that it may be run from the command line.

Usage:

 watch-http-server [path] [options]
 (or alternatively, whs or watchhttpserver)

[path] defaults to ./public if the folder exists, and ./ otherwise.

Usage

Starting watch-http-server locally

 node bin/watch-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')

-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

-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.

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code