This repository provides a comprehensive authentication system built using Node.js, Express.js, and Passport.js. It currently supports authentication via Google and GitHub OAuth providers, with plans to add Facebook authentication, email OTP verification, and SMS OTP verification in the future.
- Google Authentication: Secure login with Google using OAuth 2.0
- GitHub Authentication: Secure login with GitHub using OAuth 2.0
- Session Management: User sessions are managed using
express-session
- Environment Variable Configuration: Credentials and sensitive information are stored securely using environment variables
- Facebook Authentication: OAuth-based authentication with Facebook
- OTP Verification via Email: Implementing email-based OTP verification for user authentication
- SMS OTP Verification: Implementing SMS-based OTP verification for user authentication
Before you begin, ensure you have the following installed:
- Node.js (version >= 14.x)
- MongoDB: Required for session storage and user data persistence
- npm: Node.js package manager
- GitHub and Google Developer Accounts: You will need OAuth credentials from both services
git clone https://github.com/meer-khalil/authentication.git
cd authentication
Install all necessary dependencies using npm:
npm install
Create a .env
file in the root directory with the following credentials:
# Google OAuth
GOOGLE_CLIENT_ID=your_google_client_id
GOOGLE_CLIENT_SECRET=your_google_client_secret
# GitHub OAuth
GITHUB_CLIENT_ID=your_github_client_id
GITHUB_CLIENT_SECRET=your_github_client_secret
# Session Secret
SESSION_SECRET=your_session_secret
# MongoDB Connection
MONGODB_URI=your_mongodb_connection_string
To run the application in development mode:
npm run dev
This will start the server with nodemon, which automatically restarts the server on code changes.
Set the following callback URLs in your OAuth provider developer consoles:
- Google:
http://localhost:3000/auth/google/callback
- GitHub:
http://localhost:3000/auth/github/callback
For production, replace localhost:3000
with your domain.
- Go to the Google Cloud Console
- Create a new project or select an existing one
- Enable the Google+ API
- Go to Credentials → Create Credentials → OAuth Client ID
- Configure the OAuth consent screen
- Add authorized redirect URIs
- Copy the Client ID and Client Secret to your
.env
file
- Go to GitHub Developer Settings
- Click "New OAuth App"
- Fill in the application details
- Add the callback URL
- Copy the Client ID and Client Secret to your
.env
file
- Login Route:
/auth/google
- Callback URL:
/auth/google/callback
- Logout Route:
/auth/google/logout
- Login Route:
/auth/github
- Callback URL:
/auth/github/callback
- Logout Route:
/auth/github/logout
authentication-service/
├── config/
│ ├── passport.js
│ └── database.js
├── routes/
│ ├── auth.js
│ └── index.js
├── models/
│ └── User.js
├── middlewares/
│ └── auth.js
├── public/
├── views/
├── .env
├── .gitignore
├── package.json
└── README.md
- Implementation of Facebook OAuth strategy
- User profile data integration
- Custom callback handling
- Email service integration using nodemailer
- OTP generation and validation
- Expiry time management
- Rate limiting
- SMS gateway integration (Twilio)
- Phone number verification
- Rate limiting
- Fallback mechanisms
- Fork the repository
- Create your feature branch:
git checkout -b feature/amazing-feature
- Commit your changes:
git commit -m 'Add some amazing feature'
- Push to the branch:
git push origin feature/amazing-feature
- Open a pull request
For questions and support, please reach out:
- Email: [email protected]
- GitHub Issues: Create an issue in the repository