Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mushfiqurniazzz/mern---firebase-auth-testing
This MERN app allows users to create a account using their gmail account with the help of firebase. It has functionality for hashing the passwords with bcryptjs before saving in DB, saving cookies in local storage during login process with the help of jsonwebtoken and saving every single accounts created in MongoDB.
https://github.com/mushfiqurniazzz/mern---firebase-auth-testing
bcryptjs dotenv express-router expressjs firebase firebase-auth jsonwebtoken mern-stack mongoosejs nodejs nodemon react-router reactjs
Last synced: 2 months ago
JSON representation
This MERN app allows users to create a account using their gmail account with the help of firebase. It has functionality for hashing the passwords with bcryptjs before saving in DB, saving cookies in local storage during login process with the help of jsonwebtoken and saving every single accounts created in MongoDB.
- Host: GitHub
- URL: https://github.com/mushfiqurniazzz/mern---firebase-auth-testing
- Owner: mushfiqurniazzz
- Created: 2024-04-25T19:36:59.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-05-27T05:35:28.000Z (7 months ago)
- Last Synced: 2024-10-11T12:03:44.570Z (2 months ago)
- Topics: bcryptjs, dotenv, express-router, expressjs, firebase, firebase-auth, jsonwebtoken, mern-stack, mongoosejs, nodejs, nodemon, react-router, reactjs
- Language: JavaScript
- Homepage:
- Size: 2.12 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
MERN - Firebase Auth Project
https://github.com/mushfiqurniazzz/MERN---Firebase-Auth-Testing/assets/148959859/4525d79d-0803-4978-934c-c69367c45699
This MERN app allows users to create a account using their gmail account with the help of firebase. It has functionality for hashing the passwords with bcryptjs before saving in DB, saving cookies in local storage during login process with the help of jsonwebtoken and saving every single accounts created in MongoDB. It uses MongoDB as the database to store data, Express.js for handling server-side logic, React.js for building the user interface, and Node.js for server-side runtime environment. The app provides a seamless experience for users to easily signup and login.
Running the Project Locally
To run this project on your local machine, follow these steps:
1. Clone the Repository: Clone this repository to your local machine:
git clone
2. Navigate to Project Directory: Move into the project directory:
cd
3. Install Dependencies: Install the necessary dependencies using npm or yarn:
npm install
or
yarn
4. Setup Environment Variables: Create a `.env` file in the root of your project directory and add the following variables:
MONGODB_URI=your_mongodb_uri
PORT=5000
CLIENT_PORT=3000Replace `your_mongodb_uri` with your MongoDB connection URI. Customize the `PORT` and `CLIENT_PORT` variables if needed.
5. Start the Development Server: Run the following command to start the development server:
npm start
6. Firebase: Read this doc for better understanding. https://firebase.google.com/docs/reference/node
7. Access the App: Open your web browser and navigate to `http://localhost:3000` to access the app. You can now use the app locally on your machine, connected to your MongoDB database using the URI specified in the `.env` file.
8. Note: The project may not work if you do not install dependencies in both front end and backend. So you would have to apply step 2 and 3 twice, once in frontend and once in backend.