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
- Host: GitHub
- URL: https://github.com/webintellectual/to-do-app-backend
- Owner: webintellectual
- Created: 2023-08-20T21:23:34.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2023-08-21T06:48:55.000Z (almost 3 years ago)
- Last Synced: 2025-04-22T19:05:34.055Z (about 1 year ago)
- Language: JavaScript
- Homepage: https://to-do-app-backend-86th.onrender.com
- Size: 63.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.