ConFusion is a bootstrap based website that I have been using to learn a course on Bootstrap. It has been created using Node technology, as this is the first of the five courses to learn NodeJS.
It includes task runners, used to automatically perform frequent tasks such as minification and compilation, such as
- Grunt
- Gulp
Run the following command to install all the project dependencies required to run this project locally (you must have Node all set up).
npm install package.json
To run this on your localhost, use use any of the following commands, as per your preference
npm start
grunt
gulp
To set up the distribution folder, use any of the following commands, as per your preference
npm build
grunt build
gulp build