easyrtc-server在ubuntu14.04上的安装方法

easyrtc 官网 http://easyrtc.com/

1.安装nodejs,安装npm (不知道如何安装请google一下)

2. 查看运行easyrtc 所需要的js 包,在easyrtc 的根目录下面有个package.json 文件

3. 安装运行easyrtc需要的js包(js框架)

$ npm install easyrtc

$  npm install express

$  npm install socket.io

4. 启动easyrtc server

$ npm start

NOTE : 这个地方可能会报错大多数原因如下:

  1,端口(默认是8080)被其他应用程序占用

  2,缺乏依赖包

5.使easyrtc以服务(Daemon)的形式启动

请看我的另一篇日志

原文地址:https://www.cnblogs.com/Haijunzhu/p/3873224.html