Prototype for a full-stack to-do list web application.
- Run the terminal command
npm install
in the root directory to install thenode_modules
directory. - Install a local MongoDB server for the database. For instance, you can go here to find out how to install MongoDB on Windows: https://docs.mongodb.com/manual/tutorial/install-mongodb-on-windows/.
- Run the terminal command
"C:\Program Files\MongoDB\Server\3.6\bin\mongod.exe"
(or wherevermongod.exe
may be installed) to run the MongoDB for the server to work. - Optionally, run the terminal command
"C:\Program Files\MongoDB\Server\3.6\bin\mongo.exe"
to access the database's contents. - Run the terminal command
node --inspect server.js
(--inspect
for debugging) to start the server. - The server is now available to be accessed at the URL
http://localhost:3000
.