/to-do-list

Primary LanguageTypeScript

TodoList

It is a MERN web application that peforms some CRUD operations of task items.

🚧 Under development... 🚧

Features

  • Register Task
  • Update Task
  • Delete Task
  • Read All Tasks
  • Filter Tasks By Alphabetic Order
  • Filter Tasks by Status
  • Filter Tasks by Creation
  • FrontEnd Tests
  • BackEnd Tests

First Steps

# Clone this repository
$ git clone <git@github.com:EnzoThome-et/to-do-list.git>

# Installing FrontEnd Dependencies
$ cd frontend
$ npm install

# Installing BackEnd Dependencies
$ cd backend
$ npm install

Running both apps

# First, let's run the backend app
$ cd backend
$ npm start


# And now, run the frontend app
$ cd frontend
$ npm start