- Download all modules needed
npm install
- Start a dev server at http://localhost:8080/
npm run start
NOTE: This command will run a server at localhost:8080, which will apply all the changes you have made (or will make). However, if you want to deploy it, you need to build production code, follow step 3 below
- Build file for deploying website
npm run build
NOTE: This command will build/combine everything (JS and CSS) into a single bundle.js in dist folder, which is consumed by index.html file. Thus, this will be what you see if you open html directly without running 2nd command. You can now deloy this project using that bundle.js
home
│ README.md
│ index.html
│
└───src
│ │
| └───js
| | |
│ | │ index.js
| | |
│ | └─── utils
| |
| └───scss
| |
| │ index.scss
| |
| └─── components
| |
| └─── fonts
│
└───dist
If you want to make some changes to this project, pls look into source folder, src, which contains javascript and scss files
The index.js, or index.scss, is used as main file to combine other modules or components from utils, or components, folder
- dhruv10 - Dhruv Bhatnagar
- ShivamKansal - ShivamKansal
- HemabhKamboj - Hemabh Kamboj