/Todo-Do

Simple Full Stack Todo-App created using MERN stack. Take a look at the live demo below->

Primary LanguageJavaScript

Todo-App

Simple Full Stack Todo-App App created using MERN stack

Installing

  1. Install dependencies

    In the root folder run the following code

npm run install-backend
npm run install-client
  1. Update keys.js file at /backend/config/ with your details:
module.exports = {
    mongoURI: "Your MongoDb Connection String",
    secretOrKey: "YourSecretKey"
  };
  1. Run project
npm run backend-dev
npm run frontend-dev