A full-stack resume builder I made during my CodeClause internship. The application uses a React frontend with a Node/Express backend and MongoDB, and was built as an exercise in turning structured profile data into a downloadable resume workflow.
- React frontend under
Client/ - Node.js and Express backend
- MongoDB for persistence
- JWT-based application authentication
- Google authentication support
html-pdffor PDF generation
Install the server dependencies:
npm installInstall the frontend dependencies:
npm run client-installConfigure the environment values required by the server, then run both applications in development mode:
npm run devYou can also run the backend and frontend separately with:
npm run server
npm run clientClient/ React frontend
documents/ generated/document-related files
server.js Express application entry point
package.json backend scripts and dependencies
This repository is an older internship project and reflects the stack and implementation choices I was using at the time. I keep it as part of my learning history rather than presenting it as a current production system.
If you run or extend it today, review the dependency versions and local configuration first, and use your own development credentials rather than reusing any old configuration.