Skip to content

arafat717/Disaster-Relif-Backend

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

L2B2-Frontend-Path-Assignment-6-Server-Starter-Pack

Installation:

  1. Clone the repository.
  2. Install dependencies using npm install.
  3. Rename .env.example to .env.
  4. Run the server using npm run dev.

Before Pushing Code:

  1. Before pushing your code to the remote repository, ensure that you have run the following command in your terminal (Git Bash):
    rm -rf .git

Configuration:

  • Environment Variables:
    • PORT: Port number the server listens on. Default: 3000
    • MONGODB_URI: URI for MongoDB database.
    • JWT_SECRET: Secret key for JWT token generation.
    • EXPIRES_IN: Token expiration time.

Usage:

  • API Endpoints:
    • POST /api/auth/login

      • Description: Authenticates user and returns a JWT token.
      • Request:
        { 
            "email": "example@email.com", 
            "password": "password" 
        }
      • Response:
        {
            "success": true, 
            "message": "User registered successfully"
        }
    • POST /api/auth/register

      • Description: Registers a new user.
      • Request:
        { 
            "name": "John", 
            "email": "example@email.com", 
            "password": "password" 
        }
      • Response:
        {
            "success": true,
            "message": "Login successful",
            "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6InBoMkBleGFtcGxlLmNvbSIsImlhdCI6MTcwNzg1MDYyMSwiZXhwIjoxNzA3OTM3MDIxfQ.7EahSgmPLPNuZ_T9ok-B6TayWCJVdxPzi_Nx4UfrhvY"
        }

Dependencies:

  • bcrypt: Library for hashing passwords.
  • cors: Express middleware for enabling CORS.
  • dotenv: Loads environment variables from .env file.
  • express: Web framework for Node.js.
  • jsonwebtoken: Library for generating and verifying JWT tokens.
  • mongodb: MongoDB driver for Node.js.
  • nodemon: Utility for automatically restarting the server during development.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published