Skip to content

Latest commit

 

History

History
21 lines (18 loc) · 590 Bytes

README.md

File metadata and controls

21 lines (18 loc) · 590 Bytes

chat-app

created on node.js and react

initiate the project

  1. Type the following command in the terminal: npm init In place of package name write(e.g. chat-io) Continue to enter until you need to type yes. CONGRATULATIONS! project successfully created.

Now installing dependencies

Write the following commands in the terminal npm i --save express npm i nodemon -g After installing nodemon add a custom script in package.json file "start": "nodemon index.js" npm i --save dotenv npm i --save sequelize -g npm i --save sequelize-cli -g npm i --save pg -g