https://github.com/ibrsec/contacts2-express
Backend of the Contacts App
https://github.com/ibrsec/contacts2-express
express jwt mongodb
Last synced: 2 months ago
JSON representation
Backend of the Contacts App
- Host: GitHub
- URL: https://github.com/ibrsec/contacts2-express
- Owner: ibrsec
- Created: 2024-07-07T19:57:20.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-09T13:14:44.000Z (almost 2 years ago)
- Last Synced: 2025-02-26T07:44:18.246Z (over 1 year ago)
- Topics: express, jwt, mongodb
- Language: JavaScript
- Homepage: https://contacts-react-express.vercel.app/
- Size: 102 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
Contacts app Backend
An awesome Backend project of Contacts
Frontend Repo
ยท
Frontend Live
ยท
Report Bug
ยท
Request Feature
๐ Table of Contents ๐
---
ERD:
[](https://contacts-react-express.vercel.app/)
---
---
๐ฆ A Backend of Contacts App Project
๐ [Frontend Repo](https://github.com/ibrsec/contacts-react)
๐ฏ Express.js Framework: Developed a secure and efficient RESTful API with Express.js for managing user and contact data.
๐ Authentication & Authorization: Utilized bcrypt for password hashing and JWT for secure user authentication and authorization.
๐ Database Management: Leveraged MongoDB and Mongoose for effective data modeling, validation, and querying of user and contact information.
๐ CRUD Operations: Implemented full CRUD functionality for managing users and their associated contacts, ensuring seamless data operations.
๐ Middleware & Error Handling: Created custom middleware for input validation, CORS handling, and consistent error management throughout the API.
๐ Scalable Deployment: Prepared for deployment on Vercel to ensure high availability and scalability.
```sh
# clone the project
git clone https://github.com/ibrsec/contacts2-express.git
# enter the project directory
cd contacts2-express
# install dependency
npm install
# develop
npm run start
```
```diff
+ contacts2-express (folder)
|---config (folder)
|
|---controllers (folder)
|
|---middleware (folder)
|
|---models (folder)
|
|---router (folder)
|
|----.env
|----.gitignore
|----index.js
|----contants.js
|----package.json
|----vercel.json
โ----readme.md
```
---