Programming language/javascript

http-server 옵션

hello-world 2017. 6. 1. 11:18
728x90
반응형

http-server ( 개발 서버 )

- npm install http-server --save-dev


URL : https://www.npmjs.com/package/http-server


"http-server -a localhost -p 8000 -c-1 ./app"

-a Address to use (defaults to 0.0.0.0)


-p Port to use (defaults to 8080)


-c Set cache time (in seconds) for cache-control max-age header, e.g. -c10 for 10 seconds (defaults to '3600'). 

To disable caching, use -c-1.

728x90
반응형