A password generator application built using React and Tailwind CSS. For hosting the site, I have used Cloudflare Pages
FIrstly, you have to clone the github repository:
git clone https://github.com/arijitdn/password-generator.git
After that, open the project in Visual Studio Code or any other text editor of your choice and run the following command after opening a terminal:
npm install
Then to run the project, type: (It will start a development server using Vite)
npm run dev
or you can build the project and then start it using:
npm run build && npm run start