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 -vandmongo - Run
npm installinside theserverandtodo-listfolders respectively - Create an empty directory
dataunder theserverfolder - Start mongo daemon using command
mongod --dbpath ./datainside theserverdirectory (in your terminal) - Start server using command
babel-node server.jsinside theserverdirectory (in new terminal) - Start frontend using command
npm startinside thetodo-listdirectory (in new terminal)