当前位置:网站首页>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
边栏推荐
- 【力扣】55. 跳跃游戏
- 在任务管理器中结束任务进程之后电脑直接黑屏了
- 堆(heap)系列_0x08:NT堆调试支持_立刻发现调试支持(DPH)
- Vim实用技巧_0.vim - introduction
- unity shader 入门 全透明与半透明效果实现
- Analytic Hierarchy Process (AHP) - Applications of MATLAB in Mathematical Modeling (2nd Edition)
- UDP 基本通信框架
- Unity Shader零基础入门1:纯色物体
- 灰色预测及其MATLAB实现——MATLAB在数学建模中的应用
- Vim practical skills_4. Manage multiple files (open + split + save + netrw)
猜你喜欢
随机推荐
关于sql语句中union和or的区别
Vim实用技巧_6.复制和粘贴原理(寄存器)
【Postgraduate Work Weekly】(The third week)
蓝桥杯嵌入式第十三届模拟题做题笔记
#define DEBUG(format, ...) 以及 #、##、__VA_ARGS__和##__VA_ARGS__的作用
层次分析法
【QT】窗口几何布局学习
hugging face tutorial - Chinese translation - share a model
LeNet5 pytorch实现
【工具使用】Modsim32软件使用详解
【Postgraduate Work Weekly】(Week 5)
Grey prediction and MATLAB, the application of MATLAB in mathematical modeling
蓝桥杯嵌入式第四届省赛做题笔记
堆(heap)系列_0x09:堆破坏示例(非法访问+未初始化+堆句柄不匹配)
事务的隔离级别
规划问题的MATLAB求解——MATLAB在数学建模中的应用(第2版)
如何不使用第三个变量来交换两个数的值
解决端口号被占用的情况
hugging face tutorial - Chinese translation - fine-tuning a pre-trained model
Vim实用技巧_2.普通模式和插入模式