Skip to main content

A simple development http server with live reload capability.

# To serve an index.html file and reload on changes:
live-server

# To specify a port (default is 8080) from which to serve a file:
live-server --port=8081

# To specify a given file to serve:
live-server --open=about.html

# To proxy all requests for ROUTE to URL:
live-server --proxy=/:http:localhost:3000