Wanna create your own by copying this? Follow the steps given below:
- Node Version 14+ (
node -v
) - NPM Version 10+ (
npm -v
)
- Download the project zip on your local machine and delete all files from
./docs
folder. - Run
npm install
(Shortcode :npm i
) [Ignore warnings and errors]. - Run
npm start
to run the site on local environment - Open http://localhost:3000 to see the site, it should open
- Edit the code, as you save the code, the changes will immediately reflect on the site you opened. (No need to execute
npm start
again and again) - After finishing changes, stop the running
npm start
command. - Execute the
npm run build
to build the site, it will generate all output files into./docs
folder. - Copy files from the
./docs
folder and deploy on your host. If you're using github pages, then go to repo settings->Pages and choose/docs
folder.