当前位置:网站首页>easywsclient的DEMO测试
easywsclient的DEMO测试
2022-08-09 15:00:00 【北雨南萍】
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
[email protected] /usr/local/lib/node_modules/ws
?”?”??”? [email protected]
?””?”??”? [email protected]
$ 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
边栏推荐
猜你喜欢
随机推荐
CTF online encryption and decryption and common tools
hugging face tutorial - Chinese translation - fine-tuning a pre-trained model
ASCII码表
保存数据
大唐杯5G练习题(二)
PE format series _0x05: output table and relocation table (.reloc)
libev库解剖(1)
#define DEBUG(format, ...) 以及 #、##、__VA_ARGS__和##__VA_ARGS__的作用
永磁同步电机电位器调速及数码管实时显示
数学规划模型
多元回归分析
基于MySQL的数据在线管理系统
Cloud Models and Logistic Regression - Applications of MATLAB in Mathematical Modeling (2nd Edition)
SQLMap常用命令介绍
【剑指 Offer】 37. 序列化二叉树
灰色关联度矩阵——MATLAB在数学建模中的应用
【翻译】制作DEB/debian包
图论最短路径求解
VGG pytorch实现
流体拓扑优化问题









