A PDF generator created using ReactJS and NodeJS.
This is how this app and the generated PDF file looks :
- Install dependencies both in client directory :
cd client && npm install
# or
cd client && yarn install
- Install dependencies both in server directory :
cd server && npm install
# or
cd server && yarn install
- Run server :
cd server && npm dev
# or
cd server && yarn dev
- Run client :
cd client && npm start
# or
cd client && yarn start
- The app will be running on
localhost:3000
(client) andlocalhost:5000
(server)!