로컬 환경에서 간단히 웹서버를 띄우고 테스트를 해야하는 경우가 있다.
다양한 방법이 있는데 가장 간단한 방법이라고 생각해서 정리한다.
일단 Node.js와 npm은 설치되어있어야한다.
front-end개발에서 이게 빠지는 경우는 요즘 보기 힘들다...
그리고 명령창에서 http-server 모듈을 전역에 설치한다. (-g 옵션)
$npm install -g http-server
root 경로로 사용한 폴더로 이동한다.
$cd d:\react-test
http서버를 실행한다.
$http-server ./
Starting up http-server, serving ./
Available on:
http://127.0.0.1:8080
http://192.168.0.103:8080
Hit CTRL-C to stop the server
브라우져로 url에 접속한다.
localhost:8080