create-html-sass-boilerplate
v1.0.3
Published
Generate a html/sass boilerplate
Maintainers
Readme
Create HTML/Sass Boilerplate
Generate html/sass boilerplate in matter of seconds! 🕒
How to
npx create-html-sass-boilerplate my-app
cd my-app
sass --watch scss/main.scss css/style.cssCreating an app
You will need to have Node 8.16.0 or Node 10.16.0 or later version on your local development machine Sass is also needed to run the watch command
npx
npx create-html-sass-boilerplate my-apponce the boilerplate is created, cd into it:
cd my-app
sass --watch scss/main.scss css/style.cssFolder structure
Generates the folowing folder structure for you're next project
my-app
├── index.html
├── css
│ ├── style.css (wil be generated with sass command)
├── scss
| ├── main.scss
│ ├── base
│ ├── _colors.scss
│ ├── _default.scss
│ ├── _fonts.scss
│ ├── layout
│ ├── _Header_.scss
│ ├── _Hero.scss
├── js
│ ├── main.js
├── assets
│ ├── icons
│ ├── images
├── pagesContributing to the projects
Readme in the make...
Happy coding!

