git clone https://github.com/xis/chat.git
cd chat
npm install
npm start
io.on('connection', function(socket){
console.log('a user connected');
socket.on('sendMsg', function(value){
io.sockets.emit('msgInbound', [ value.input, value.myName, value.type ])
});
});
command | for what |
---|---|
/username | to set your username |
/code | to send code |