Server side server and API for chat. Live demo: http://trafchat.herokuapp.com/
To run the project you need to manually include dbconfig.js at project root directory which exports MySQL database settings.
module.exports = {
host: 'localhost',
user: 'root',
password: '',
database: 'chat'
};