live-server: add page (#1782)

coverage
Starbeamrainbowlabs 2017-12-14 20:22:07 +00:00 committed by GitHub
commit bb70424647
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,19 @@
# live-server
> A simple development http server with live reload capability.
- Serve an index.html file and reload on changes:
`live-server`
- Specify a port (default is 8080) from which to serve a file:
`live-server --port={{8081}}`
- Specify a given file to serve:
`live-server --open={{about.html}}`
- Proxy all requests for ROUTE to URL:
`live-server --proxy={{/}}:{{http:localhost:3000}}`