Javascript Workshop Code Current Version is taken from Garage@EEE Makeathon Night Folder Structure basic-syntax: Javascript document showing basic syntax for javascript todo-list: Simple React Todo List App server: Express server for the Todo List App (uses MongoDB) Setup 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 and mongo Run npm install inside the server and todo-list folders respectively Create an empty directory data under the server folder Start mongo daemon using command mongod --dbpath ./data inside the server directory (in your terminal) Start server using command babel-node server.js inside the server directory (in new terminal) Start frontend using command npm start inside the todo-list directory (in new terminal)