I am new to node...If you need something more, please comment.
MY CODE :
io.socket.on('connection', function(socket){
console.log('유저 접속 됨')
socket.on('send', function(data){
console.log('전달된 메시지: ', data.msg)
})
socket.on('disconnect', function(){
console.log('접속 종료')
})
})
and this console output :
TypeError: Cannot read property 'on' of undefined
at Object.<anonymous> (D:\Project\NodeJS\node-chat\app.js:32:11)
at Module._compile (internal/modules/cjs/loader.js:1085:14)
at Object.Module._extensions..js
(internal/modules/cjs/loader.js:1114:10)
at Module.load (internal/modules/cjs/loader.js:950:32)
at Function.Module._load (internal/modules/cjs/loader.js:790:12)
at Function.executeUserEntryPoint [as runMain]
(internal/modules/run_main.js:76:12)