1단계 목표 : node.js 로 채팅서버를 구현하여 연결된 클라이언트들에게 채팅메시지 broadcasting
2단계 목표 : 채팅방을 적용해서 같은 방에 있는 사람들끼리만 대화하기
참고 사이트 : http://socket.io/docs/
0단계 개발환경 구축
정말 친절하게 최초 구축 과정부터 알려드리겠습니다. (저는 CentOS 에서 작업했슴다)
node.js 설치 (아래 과정을 순서대로 따라하시면 됨다)
>> node.js 설치 정상적으로 됐는지 테스트
node 입력 (node.js 실행)
1단계 (node.js 로 채팅서버를 구현하여 연결된 클라이언트들에게 채팅메시지 broadcasting )
0단계를 잘 따라햇따면 /home/testapp 안에는 node_modules 디렉토리와, package.json 파일이 있을것이다.
이제 여기에 index.js 라는 서버를 작성해보자
우선 vi 편집기로 파일을 열고 ~
vi index.js
아래 내용 작성 및 저장 !
[서버 소스 : index.js]
var app = require('express')();
var http = require('http').Server(app);
var io = require('socket.io')(http);
app.get('/', function(req, res){
res.sendFile(__dirname + '/index.html');
});
io.emit('some event',{for:'everyone'});
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);
});
});
http.listen(80, function(){
console.log('listening on *:80');
});
이제 client 작성
[클라이언트 소스 : 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>
<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>
var socket = io();
$('form').submit(function(){
socket.emit('chat message', $('#m').val());
$('#m').val('');
return false;
});
socket.on('chat message', function(msg){
$('#messages').append($('<li>').text(msg));
});
</script>
</body>
</html>
실행해볼라우 ?
node index.js 라고 치면 서버가 실행되고 80포트로 연결 요청을 대기타고있을것이오
그럼 그대는 ? 크롬을 열고 (IE 는 싫어..막싫어 )
크롬에 80 포트로 주소를 때리세요 그리고 채팅을 해보시요 ~ 서버에 뜨는 로그도 봐가면서 ㅎㅎ
그럼 이제
2단계 목표 : 채팅방을 적용해서 같은 방에 있는 사람들끼리만 대화하기
는..... 지금 좀 피곤해서.. 나중에 작성해볼랍니다
혹 궁금하신분은 댓글 남겨주시면 .. 빠른 시일내로..작성해보겠슴돠
댓글
댓글 쓰기