easywsclient的DEMO测试

1. 下载


$ mkdir easywsclient
$ git clone
$ cd easywsclient


2. example-server的启动


$ node example-server.js
module.js:340
    throw err;
          ^
Error: Cannot find module 'ws'
    at Function.Module._resolveFilename (module.js:338:15)
    at Function.Module._load (module.js:280:25)
    at Module.require (module.js:364:17)
    at require (module.js:380:17)
    at Object. (/opt/websocket/easywsclient/easywsclient/example-server.js:17:23)
    at Module._compile (module.js:456:26)
    at Object.Module._extensions..js (module.js:474:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Function.Module.runMain (module.js:497:10)

解决办法:
$ sudo npm install -g ws
ws@1.0.1 /usr/local/lib/node_modules/ws
?”?”??”? options@0.0.6
?””?”??”? ultron@1.0.2

$ sudo npm install


3. example-client编译


命令行方式编译:
# 直接这样用会报错
# Build and launch the client:
$ g++ -c easywsclient.cpp -o easywsclient.o
$ g++ -c example-client.cpp -o example-client.o
$ g++ example-client.o easywsclient.o -o example-client
$ ./example-client

# 用这个版本:
# ...or build and launch a C++11 client:
$ g++ -std=gnu++0x -c easywsclient.cpp -o easywsclient.o
$ g++ -std=gnu++0x -c example-client-cpp11.cpp -o example-client-cpp11.o
$ g++ example-client-cpp11.o easywsclient.o -o example-client-cpp11
./example-client-cpp11

# 或者直接
$ make
 


4. 测试运行


$ node example-server.js 
Listening on port 8126...

$ ./example-client
easywsclient: connecting: host=localhost port=8126 path=/foo
Connected to: ws://localhost:8126/foo
>>> galaxy
>>> world

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

北雨南萍

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值