umwow / xchat

Simple Chat APP using Node.JS + Express + Socket.io :arrow_right:

Home Page:https://uwjavascript200.herokuapp.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simple Chat Application Built in Node.js and Socket.io

This is a basic chat application that utilizes Node.JS and socket.io. Web sockets in general allow messages to be pushed to other connected clients on the server.

Socket Connections

io.on('connection', function(socket){
  console.log('a user connected');
});

http.listen(3000, function(){
  console.log('listening on *:3000');
});

image


image

About

Simple Chat APP using Node.JS + Express + Socket.io :arrow_right:

https://uwjavascript200.herokuapp.com/


Languages

Language:JavaScript 62.1%Language:CSS 37.2%Language:HTML 0.7%