https://github.com/noorjsdivs/stripe-payment
Stripe Payment tutorial
https://github.com/noorjsdivs/stripe-payment
backend-server epxressjs nodejs nodejs-server reactjs-website stripe stripe-checkout stripe-checkout-form stripe-js stripe-payment stripe-payments vitejs vitejs-project vitejs-react
Last synced: 3 months ago
JSON representation
Stripe Payment tutorial
- Host: GitHub
- URL: https://github.com/noorjsdivs/stripe-payment
- Owner: noorjsdivs
- Created: 2024-09-12T09:29:59.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-09-13T18:08:10.000Z (8 months ago)
- Last Synced: 2025-01-15T20:17:27.121Z (4 months ago)
- Topics: backend-server, epxressjs, nodejs, nodejs-server, reactjs-website, stripe, stripe-checkout, stripe-checkout-form, stripe-js, stripe-payment, stripe-payments, vitejs, vitejs-project, vitejs-react
- Language: JavaScript
- Homepage:
- Size: 141 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stripe Payment
Welcome to the Stripe Payment Application! This project is designed to help you to learn how to implement Stripe payment in any Reactjs application.
## Getting Started
To begin working on this project:
1. **Clone the Repository:**
Clone this repository to your local machine using the following command:```bash
https://github.com/noorjsdivs/stripe-paymment.git
```
Install Dependencies:Please move to server directory to work on server and client directory to work on client project
Navigate to the project directory and install the required packages using one of the following package managers:
npm install
```bash
npm install
```
#### or
pnpm install
```bash
pnpm install
```
#### or
yarn
```bash
yarn
```### Run the Application:
Start the development server using the following command:## Client
npm run dev
```bash
npm run dev
```
#### or
pnpm dev
```bash
pnpm dev
```
#### or
yarn run dev
```bash
yarn run dev
```## Server
npm start
```bash
npm run dev
```
#### or
pnpm start
```bash
pnpm dev
```The application will be running on [localhost.](http://localhost:5173/) for client and [localhost.](http://localhost:8000/) for backend server
## .env Credentials
Please provide the STRIPE_SECRET_KEY in .env file for accessing the stripe portal.Happy coding!