Chat room application using Node.Js, Express.js & MySql
#Installation
- Install node.js
- Install MySql
- Clone project and go into project folder using cmd or terminal.
- Run "npm install"
- Run MySql on port 3306
- Create database with name glivertest.
- Create table with name "users" and following collumns : id, firstname, lastname, email and password. Ref: app.js line number 30.
- Change database usename & password to MySql username & password in app.js line number 28.
- Execute command "node app.js" in project folder, HTTP server will start at http://localhost:3000.