반응형
기존의 get() set() 은 없어졌고, socket object 에다가 직접 넣어서 쓰면 된다.
var http = require('http');
var socketio = require('socket.io');
var server = http.createServer();
var io = socketio.listen(server);
io.sockets.on('connection', function(socket){
//기존에 io.set('name') 이랫던거를...
socket.on('setname', function(data){
socket.name = data;
});
});
반응형
'웹프로그래밍 > node.js & Typescript' 카테고리의 다른 글
[node.js] adding .css file to ejs (0) | 2016.05.16 |
---|---|
[node.js] Unable to include relative path file using Jade Template (0) | 2015.06.23 |
[node.js] How to use layout.ejs in Express 4 (0) | 2015.06.11 |
[node.js] How to get POST a query in Express.js/Node.js? (0) | 2015.06.10 |
[node.js] How to access the GET parameters in Express.js or Node.js? (0) | 2015.06.10 |