Skip to content

Latest commit

 

History

History
26 lines (22 loc) · 908 Bytes

README.md

File metadata and controls

26 lines (22 loc) · 908 Bytes

Backend Practice Repository

This repository is dedicated to practicing and honing backend development skills. It includes various implementations and exercises using the following technologies and concepts:

  • Node.js: JavaScript runtime for building server-side applications.
  • Express.js: Web application framework for Node.js.
  • MongoDB: NoSQL database for storing and managing data.
  • Authorization & Authentication: Techniques to secure applications, including user login and role management.
  • CRUD Operations: Implementation of Create, Read, Update, and Delete functionalities.

Project Structure

.
├── src
│   ├── controllers
│   ├── models
│   ├── routes
│   ├── middlewares
│   ├── config
│   ├── utils
│   └── app.js
├── .env
├── .gitignore
├── package.json
└── README.md