Nodejs + socket.io创建web聊天程序
通过本文创建一个聊天程序
后台采用Nodejs作为web服务器,前后台通信采用socket.io,
后台 index.js
var app = require('express')();
var http = require('http').Server(app);
var io = require('socket.io').listen(http);
app.get('/', function(req, res){
res.sendFile(__dirname + '/index.html');
});
http.listen(35000, function(){
console.log('listening on *:35000');
});
io.on( 'connection', function( socket ){
console.log('a user connected');
socket.on( 'disconnect', function(){
console.log('user disconnected');
});
socket.on('chat message', function(msg){
console.log('message: ' + msg);
//io.emit('chat message', msg );
socket.broadcast.emit('chat message', msg);
});
});
前台 index.html
<!doctype html>
<html>
<head>
<title>Socket.IO chat</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font: 13px Helvetica, Arial; }
form { background: #000; padding: 3px; position: fixed; bottom: 0; width: 100%; }
form input { border: 0; padding: 10px; width: 90%; margin-right: .5%; }
form button { width: 9%; background: rgb(130, 224, 255); border: none; padding: 10px; }
#messages { list-style-type: none; margin: 0; padding: 0; }
#messages li { padding: 5px 10px; }
#messages li:nth-child(odd) { background: #eee; }
</style>
<script src="https://cdn.socket.io/socket.io-1.2.0.js"></script>
<script src="http://code.jquery.com/jquery-1.11.1.js"></script>
<script type="text/javascript">
var socket = io();
socket.on('chat message', function(msg){
$('#messages').append('<li>' + msg + '</li>');
});
</script>
</head>
<body>
<ul id="messages"></ul>
<form id='sendForm' action="">
<input id="m" autocomplete="off" /><button type='submit'>Send</button>
</form>
<script type="text/javascript">
$('#sendForm').submit(function( event ){
socket.emit('chat message', $('#m').val());
$('#m').val('');
return false;
});
</script>
</body>
</html>
使用的nodejs的包有:
express
socket.io
因此需要安装他们:
npm install –save express
npm install –save socket.io
之后使用下面命令运行服务器
# node index.js
然后在浏览器中访问
http://[ip地址]:35000
就可以访问这个聊天程序了。这个聊天程序相当于创建了一个聊天组,你发的消息只要使用这个程序所有人都可以看到。因为他是web程序,因此只要你的将此套程序放在一个具有公网ip的服务器上面,全世界各地的电脑都可以访问这个聊天程序聊天。
代码打包下载这里
下载之后不要忘了执行:
npm install –save express
npm install –save socket.io
另外服务器是监听35000这个端口,确保这个端口是被防火墙容许的。
版权所有,禁止转载. 如需转载,请先征得博主的同意,并且表明文章转载自:IT夜班车,否则按侵权处理.