首页 > 代码库 > nodejs即时聊天

nodejs即时聊天

一直想做一个即时聊天的应用,前几天看到了socket.io,感觉还不错,自己略加修改,感觉挺不错的。官网上给的例子很简单,下面改进了一点,实现了历史消息的推送。

demo地址:chat.androiddevelop.cn


其中服务器端代码:

var app = require('express')();
var http = require('http').Server(app);
var io = require('socket.io')(http);
var history = new Array();

app.get('/', function(req, res){
  res.sendfile('chat.html');
});

io.on('connection', function(socket){
  socket.on('chat message', function(msg){
    io.emit('chat message', msg);
    addMsg(msg);
  });

  socket.on('login message', function(msg){
    socket.join('history room');
    for(var i=0;i<history.length;i++){
      io.in('history room').emit('chat message', history[i]);
   }
      io.in('history room').emit('chat message', 'lyd__上面是最近的一些信息');
    socket.leave('history room');
    socket.join('chat room'); 
 
    io.emit('chat message',msg);
    addMsg(msg);
  });
});

http.listen(3000, function(){
  console.log('listening on *:3000');
});

function addMsg(msg){
 history.push(msg);
 if(history.length>100)
    history.shift();
};


聊天页面代码:

<!doctype html>
<html>
  <head>
    <title>聊天室</title>
    <style>
      * { margin: 0; padding: 0; box-sizing: border-box; }
      body { font: 20px Helvetica, Arial; }
      form { background: #000; padding: 3px; position: fixed; bottom: 0; width: 100%; }
      form input { border: 0; padding: 10px; width: 90%;  }
      form button { width: 10%; background: rgb(130, 224, 255); border: none;  padding: 10px; }
      #messages { list-style-type: none; margin: 0; padding: 0; }
      #messages li { padding: 5px 10px 5px 10px; }
    </style>
  </head>
  <body>
    <ul id="messages"></ul>
    <form action="">
      <input id="m" autocomplete="off" /><button id="btn">登录</button>
    </form>
    <script src=http://www.mamicode.com/"/socket.io/socket.io.js"></script>>
这样就实现了一个聊天室,进入后输入用户名,登录,之后服务器返回最近的100条消息。

nodejs即时聊天