This project provides a simple online tool to convert Word documents to PDF format. The project is divided into two main parts:
- Backend: A Node.js server that handles file uploads and the conversion from Word to PDF.
- Frontend: A Vite-powered React app that provides the user interface for uploading Word files and downloading the converted PDF.
- Node.js (for backend)
- npm or yarn (for managing dependencies)
- Navigate to the
backend
folder:cd backend
- Install the required dependencies:
npm install
- Start Server:
npm start
- Navigate to the
frontend
folder:cd frontend
- Install the required dependencies:
npm install
- Start Server:
npm run dev