basic-syntax
: Javascript document showing basic syntax for javascripttodo-list
: Simple React Todo List Appserver
: Express server for the Todo List App (uses MongoDB)
- Clone the git repository into your disk
- Install NodeJS and MongoDB (make sure that mongo.exe is inside your system PATH environment variable)
- Check installations my running
node -v
,npm -v
andmongo
- Run
npm install
inside theserver
andtodo-list
folders respectively - Create an empty directory
data
under theserver
folder - Start mongo daemon using command
mongod --dbpath ./data
inside theserver
directory (in your terminal) - Start server using command
babel-node server.js
inside theserver
directory (in new terminal) - Start frontend using command
npm start
inside thetodo-list
directory (in new terminal)