Welcome to the Stripe MEAN Stack Project
The MEAN stack is intended to provide a simple fullstack javascript applications.
MEAN is a set of Open Source components that together, provide an end-to-end framework for building dynamic web applications; starting from the top (code running in the browser) to the bottom (database). The stack is made up of:
- MongoDB: Document database – used by your back-end application to store its data as JSON (JavaScript Object Notation) documents
- Express (sometimes referred to as Express.js): Back-end web application framework running on top of Node.js
- Angular (formerly Angular.js): Front-end web app framework, runs your JavaScript code in the user's browser, allowing your application UI to be dynamic
- Node.js: JavaScript runtime environment – lets you implement your application back-end in JavaScript
This is a Stripe MEAN Stack project. In this project, You can do stripe customers, add cards, remove card and make payment functionality.
git clone https://git.1-hub.cnrajneshwarsingh/stripeApp.git
cd frontend
npm install
cd ..
cd backend
npm install
cd backend
npm start
- Runs the backend code in the development mode.
- It listing the http://localhost:3000 port.
- The page will reload if you make edits.
- You will also see any lint errors in the console.
cd frontend
ng serve
- Runs the frontend code in the development mode.
- Open http://localhost:4200 to view it in the browser.
- The page will reload if you make edits.
- You will also see any lint errors in the console.