mac上启动web服务
mac上启动web服务
第一种
Node.js server
npm install http-server -g
http-server . -p 8000
第二种
安装
npm install -g node-static
启动
static -p 80
或:nohup static -p 80 -a 0.0.0.0 &
Node.js server
npm install http-server -g
http-server . -p 8000
安装
npm install -g node-static
启动
static -p 80
或:nohup static -p 80 -a 0.0.0.0 &