To Do List Using NodeJS
A Simple NodeJS application with three end points to get, add and delete elements from an array respectively.
Getting Started
Make sure that you have Node installed in your system before you start the application.
Installing
Run the following command
yarn install
And after the dependencies are installed
yarn start
Usage
- GET '/' - Endpoint to retrieve the element in the todo list
- POST '/' - Add an element to the list
{
"element": "ELEMENT_NAME"
}
- DELETE '/' - Delete an element from the list
{
"element": "ELEMENT_NAME"
}
Built With
- ExpressJS - Framework Used
Authors
License
This project is licensed under the MIT License - see the LICENSE.md file for details
Log in or sign up for Devpost to join the conversation.