1)安装npm包管理器
apt-get install npm
2)安装nodejs包管理器
apt-get install nodejs
3)运行npm安装http-server
npm install http-server -g
提示出错
/usr/bin/env: node: No such file or directory
原因
因为npm执行的时候默认是使用/usr/bin/node去执行的,但本地是没有/usr/bin/node的,所以需要创建一个软链接,链接到真正的nodejs上,执行如下指令
ln -s /usr/bin/nodejs /usr/bin/node
4)在janus-gateway的html路径下启动http-server
root@4c9f329b2677:/home/dong/janus-src/janus-gateway/html# http-server
Starting up http-server, serving ./
Available on:
http://127.0.0.1:8080
http://172.18.0.13:8080
Hit CTRL-C to stop the server