Node.js 웹소켓 서버/클라이언트 예제
서버 - index.js const WebSocket = require('ws'); const wss = new WebSocket.Server({ port: 8080 }); wss.on('connection', function connection(ws, request) { console.log('connection'); ws.on('message', function incoming(message) { console.log('received: %s', message); }); ws.on('close', function close(code, reason) { console.log('close ' + code + ':'+reason); }); ws.send('something'); }); 클라이언트 - ind..
프로그래밍
2017. 8. 10. 21:57
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday