JavaScript
HTML
CSS
npm i
run index.html using live-server
npm init -y
echo "node_modules/" > .gitignore
echo "dist/" >> .gitignore
npm i axios
npm i gh-pages -D
mkdir src src/styles src/scripts src/images
touch src/index.html src/scripts/index.js src/styles/style.css
"script":{
"build": "rm dist -rf && mkdir dist && cp -r src/* dist",
"publish": "gh-pages -d dist",
"deploy": "npm run build & npm run publish"
}
npm run deploy