Skip to content

nelwincatalogo/todo-list-app

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 

Repository files navigation

TO-DO List App

I was able to learn and build this MERN TODO List App within 4 days.

Local Setup

Setup Backend

  1. Open a terminal and run this command.

     cd backend && npm install
  2. Install nodemon to run our node server.

    npm i -g nodemon
  3. Start the MongoDB Services.

     mongod
  4. Open new terminal and Connect to mongodb client.

    mongo
  5. Create a database.

    use todos-mongodb
  6. Create a collection.

    db.createCollection("todos")
  7. Start the nodejs server by running

    npm start

Setup Frontend

  1. Install the frontend dependencies.

    npm install
  2. Start the project.

    npm start

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published