A simple starter kit builded with Gulp, SASS, and js/sass lint for better coding
- Make sure you have installed gulp-cli, and Yarn if you like to install your develop dependencies faster.
- on root folder run
npm install
oryarn install
. - Run
gulp
. - Hack the matrix.
This project is trying to give you a quick starter pack for your next static page focused on good FrontEnd practices without taking away the simplicity.
The following libraries have been curated to get the best from npm
- Gulp
- SASS
- Yarn
- ES6 thanks to Babel
- browser-sync
- imagemin
- stylelint
- jshint
- Run pre-commits for linting with Husky
All the development files are located in src/
folder, please do not modify any css or js from the dist folder, it will be overwritten.
When committing, a wild pre-commit will spawn and will check all your js, sass code quality, so you may need to install jshint client
npm install -g jshint
.
- Add modular html
- Add grid system
- Include best FrontEnd code practices via examples
If there is something else you think it would be nice to have submit an issue or a PR if you'd like to contribute :)