1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-11 22:15:45 +02:00

live-server: add page

This commit is contained in:
SheaClose 2017-12-10 21:34:49 -06:00
parent a5c9998f06
commit 4f1486b2f5

View file

@ -2,18 +2,18 @@
> A simple development http server with live reload capability. > A simple development http server with live reload capability.
- Serve an index.html file and reload on changes: * Serve an index.html file and reload on changes:
`live-server` `live-server`
- Specify a port from which to serve a file: * Specify a port from which to serve a file:
`live-server --port=8081` `live-server --port={{8081}}`
- Select file other than index.html to serve: * Specify a given file to serve:
`live-server --open=about.html` `live-server --open={{about.html}}`
- Proxy all requests for ROUTE to URL: * Proxy all requests for ROUTE to URL:
`live-server --proxy=/:http:localhost:3000` `live-server --proxy={{/}}:{{http:localhost:3000}}`