https://github.com/kevinadhiguna/react-node-pdf-generator
A PDF generator created using ReactJS and NodeJS.
https://github.com/kevinadhiguna/react-node-pdf-generator
nodejs pdf-generator react
Last synced: 3 months ago
JSON representation
A PDF generator created using ReactJS and NodeJS.
- Host: GitHub
- URL: https://github.com/kevinadhiguna/react-node-pdf-generator
- Owner: kevinadhiguna
- Created: 2020-09-05T07:35:45.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-08-30T03:05:18.000Z (almost 3 years ago)
- Last Synced: 2025-01-11T13:17:52.993Z (5 months ago)
- Topics: nodejs, pdf-generator, react
- Language: JavaScript
- Homepage:
- Size: 619 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# React-Node PDF Generator
A PDF generator created using ReactJS and NodeJS.
## Demo
This is how this app and the generated PDF file looks :
## How to Run :
1) Install dependencies both in client directory :
```
cd client && npm install
# or
cd client && yarn install
```2) Install dependencies both in server directory :
```
cd server && npm install
# or
cd server && yarn install
```3) Run server :
```
cd server && npm dev
# or
cd server && yarn dev
```4) Run client :
```
cd client && npm start
# or
cd client && yarn start
```5) The app will be running on `localhost:3000` (client) and `localhost:5000` (server)!
## Reference
- [How to Create PDFs With Node JS and React by JavaScript Mastery](https://youtu.be/bt1tOhUYxvM)
