Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yhimanshu22/payu_app
a payment app for basic transactions
https://github.com/yhimanshu22/payu_app
mongoose nodejs reactjs
Last synced: 20 days ago
JSON representation
a payment app for basic transactions
- Host: GitHub
- URL: https://github.com/yhimanshu22/payu_app
- Owner: yhimanshu22
- Created: 2024-07-12T21:38:19.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-12T23:23:51.000Z (6 months ago)
- Last Synced: 2024-10-25T10:45:43.657Z (2 months ago)
- Topics: mongoose, nodejs, reactjs
- Language: JavaScript
- Homepage:
- Size: 75.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PayTM_MERN_Stack
## Overview
This is a full-stack Paytm-like application built using the MERN stack (MongoDB, Express.js, React.js, and Node.js). The application allows users to sign up, sign in, and send money to their friends.
## Features
- User authentication (sign up, sign in, logout)
- Wallet functionality for users
- Send money to friends
- Transaction history## Tech Stack
- **Frontend:**
- React.js
- React Router for navigation
- Axios for API requests
- Tailwind css- **Backend:**
- Node.js with Express.js
- MongoDB for database
- Mongoose for MongoDB object modeling
- JWT for authentication## Setup
**Clone the Repository:**
```bash
git clone https://github.com/Mayur-Shiwal/PayTM_MERN_Stack.git
cd PayTM_MERN_Stack
```
**Install backend dependencies**
```
cd backend
npm install
```
**Install frontend dependencies**
```
cd ../frontend
npm install
```
**Configure Environment Variable:**
Create a .env file in the server directory and configure the following variables:
```
PORT=3000
MONGODB_URI=your_mongodb_connection_string
JWT_SECRET=your_jwt_secret
```
**Run the application:**
**Run the server (in the server directory)**
```
cd backend
npm start
```
**Run the client (in the client directory)**
```
cd ../frontend
npm start
```
**Access the Application:**
- Open your browser and go to http://localhost:3000 to access the Paytm application.## Contributing:
- Feel free to contribute to the project. You can contribute by opening issues, submitting pull requests, or suggesting new features.