- Home
- Javascript
- Project Set-up
Project Set-up
Contents
Project Set-up
Set up the environment first by creating a React project with Vite, then install Tailwind CSS:
Step 1: Create a React project with Vite
Start by creating a new project folder and opening it in VS Code.
- Open the terminal and run:
npm create vite@latest
- Then move into the project folder by running this command:
cd JobPortalApp (cd <Your Project Name>)
- For installing dependencies, run:
npm install
- Start the development server through this command:
npm run dev
- After running npm run dev, your project will be live on your local host at:
Step 2: Install Tailwind CSS
Set up and configure Tailwind CSS by following the official Vite installation guide: Get Started
Step 3: Install other Libraries used in this project
- For icons (Star, User, Logout), install Lucide React:
npm i lucide-react
- For navigating between the Customer and Admin pages, install React Router DOM:
npm i react-router-dom
Job Portal with Applicant Tracking System Using Full Stack Development
AP









