An open API service indexing awesome lists of open source software.

https://github.com/webintellectual/to-do-app-backend

Node, Express, MongoDB, Axios API
https://github.com/webintellectual/to-do-app-backend

Last synced: 11 months ago
JSON representation

Node, Express, MongoDB, Axios API

Awesome Lists containing this project

README

          

Technology: Express, MongoDB

---

Frontend [here.](https://github.com/webintellectual/To-Do-App-Frontend)

---

### DIRECTORY GUIDE:

**Package.json** : It keeps dependencies of modules that we install.

**node_modules** folder keep the modules that we installed in backend folder.

---
**models**:
- Here we create database models.
- Schema of database is defined.

**controllers**:
- logic to make CRUD requests on database is written here.
- models are imported and logic is written on them

**routes**:
- Here we make actual CRUD requests
- controlllers are imported and used to make requests.

**index.js** :
- It is the main entry point of our backend code.
- Backend app instance is created heres
- routes are imported here and added as use functionality in the app instance.