- Node socket 채팅 예제
- Node socket chat example
[Express.js] Node.js, socket.io 채팅 예제
Node.js 서버 구현
{ "name": "socket-chat-example", "version": "0.0.1", "description": "my first socket.io app", "dependencies": {} }
$ npm install --save express
var app = require('express')(); var http = require('http').Server(app); app.get('/', function(req, res){ res.send('<h1>Hello world</h1>'); }); http.listen(3000, function(){ console.log('listening on *:3000'); });
$ node index.js
Serving HTML
.. app.get('/', function(req, res){ res.sendFile(__dirname + '/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> </head> <body> <ul id="messages"></ul> <form action=""> <input id="m" autocomplete="off" /><button>Send</button> </form> </body> </html>
nodemon 설치
$ npm install -g nodemon
$ nodemon
Integrating Socket.IO
$ 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.sendfile('index.html'); }); io.on('connection', function(socket){ console.log('a user connected'); }); http.listen(3000, function(){ console.log('listening on *:3000'); });
... <script src="/socket.io/socket.io.js"></script> <script> var socket = io(); </script> </body> ...
- 클라이언트는 직접적인 변화가 없으며, 접속시 서버 콘솔에 'a user connected'가 출력된다.
4. disconnect 이벤트 구현
- connection 콜백에서 disconnect 이벤트 리스너를 추가했다.
- 접속시, 해제시 서버측에 콘솔이 출력된다.
... io.on('connection', function(socket){ console.log('a user connected'); socket.on('disconnect', function(){ console.log('user disconnected'); }); }); ...
Emitting events
... <script src="http://code.jquery.com/jquery-1.11.1.js"></script> <script> var socket = io(); $('form').submit(function(){ socket.emit('chat message', $('#m').val()); $('#m').val(''); return false; }); </script> ...
2. index.js 수정
- 'chat message'라는 이벤트가 발생하면 메시지를 콘솔로 출력하는 내용이다.
... io.on('connection', function(socket){ socket.on('chat message', function(msg){ console.log('message: ' + msg); }); }); ...
3. 메시지 전송 확인
- 클라이언트 소스 수정이 있었으니 브라우저 새로고침 후 메시지 전송시 서버 콘솔에 출력되는지 확인한다.
Broadcasting
이제 다른 모든 유저에게 메시지를 전달해보자.1. index.js 수정
- 'client message' 이벤트가 발생하면 메시지를 서버 콘솔에 출력하고,
emit 함수를 이용해 'server message' 라는 이벤트를 모든 클라이언트에게 전달하는 내용이다.
- chat message 라는 이름을 공통으로 사용해도 되지만, 구분하기 쉽게 client message / server message 라는 이름으로 구분해서 사용한다.
... io.on('connection', function(socket){ socket.on('client message', function(msg){ console.log('message: ' + msg); io.emit('server message', msg); }); }); ...
... <script> var socket = io(); $('form').submit(function(){ socket.emit('client message', $('#m').val()); $('#m').val(''); return false; }); socket.on('server message', function(msg){ $('#messages').append($('<li>').text(msg)); }); </script> ...
3. 메시지 전송확인
- 브라우저 탭이나 창을 여러개 띄워서 메시지 전송을 확인한다.
- 메시지 전송시 서버와 접속중인 모든 클라이언트에 해당 메시지가 출력되는것을 확인할 수 있다.
------------------------
블로거에 썼던 글을 데려옴
http://hangaebal.blogspot.kr/2015/12/expressjs-nodejs-socketio-chat.html
------------------------
'개발' 카테고리의 다른 글
[Homebrew] Mac OS brew install, brew 설치 (0) | 2016.01.06 |
---|---|
[Express.js] Node.js, socket.io 채팅 예제 (2) (0) | 2016.01.05 |
[Express.js] 게시판 만들기 예제 (0) | 2016.01.05 |
[Express.js] Express application generator (0) | 2016.01.05 |
[Express.js] Node.js, Express.js 설치 (0) | 2016.01.05 |