勤劳自行车

文章
5
资源
1
加入时间
3年0月9天

linux命令lnsrs,SRS 编译安装坑

SRS 编译start#./objs/srs -c conf/rtmp.confkill#ps aux | grep srs | awk {'print $2'} | xargs killsrs 2.0 release[root@cp01-jinya.epc.baidu.com trunk]#./configure./configure_origion:line67:syntax error ne...

js的exports

//写法1exports.hello = function(){ console.log(‘world’);}//写法2var f = { hello : function(){ console.log(‘world’); }}module.exports = f;假设我们写的这个模块的文件名为hello.js,执行下面的代码var h = require(‘hel...