NodeJS实现WebSocket
Posted white_0710
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了NodeJS实现WebSocket相关的知识,希望对你有一定的参考价值。
npm install --save express
npm install --save socket.io
服务器端代码:
var app = require(‘express‘)(); var http = require(‘http‘).Server(app); var io = require(‘socket.io‘)(http); app.get(‘/‘, function(req, res){ res.send(‘<h1>Welcome Realtime Server</h1>‘); }); io.on(‘connection‘, function(socket){ console.log(‘a user connected‘); socket.on("disconnect", function() { console.log("a user go out"); }); socket.on("message", function(obj) { io.emit("message", obj); }); }); http.listen(3000, function(){ console.log(‘listening on *:3000‘); });
客户端代码
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <script src="http://127.0.0.1:3000/socket.io/socket.io.js"></script> </head> <body> <ul id="message"></ul> <script> socket = io.connect(‘ws://127.0.0.1:3000‘); socket.emit("message", {"name" : navigator.userAgent, "msg" : "hello world"}); socket.on("message", function(obj) { console.log(obj); }); </script> </body> </html>
以上是关于NodeJS实现WebSocket的主要内容,如果未能解决你的问题,请参考以下文章
通过nodejs在共享cpanel主机上实现websocket服务器
websocket+nodejs+redis实现消息订阅和发布系统
nodejs+expressjs+ws实现了websocket即时通讯,服务器和客户端互相通信
如何用websocket+nodejs实现web即时通信服务端