generator-frontend-stack

An incomplete and entirely personal, basic front-end development template generator for Yeoman

Usage no npm install needed!

<script type="module">
  import generatorFrontendStack from 'https://cdn.skypack.dev/generator-frontend-stack';
</script>

README

generator-frontend-stack

An incomplete and entirely personal, basic front-end development template generator for Yeoman.

About

A scaffold of my web development workflow, including:

  • Bower - Package manage components such as [jquery] plugins and SASS libraries.
  • Grunt - Automate many tasks, such as compiling SASS and uglifying JS.
  • SASS - Because it’s awesome. I organise my files in a BEM (ish) style.
  • JQuery

Getting Started

What is Yeoman?

Read this: yeoman.io

Install

  • Install Yeoman globally (so you can use it anywhere).
$ npm install -g yo
  • Install this generator.
$ npm install generator-frontend-stack
  • Navigate to the folder which you wish to install the scaffold to e.g.
$ mkdir site-name && cd site-name
  • Run the generator!
$ yo frontend-stack
  • Run bower and grunt.
$ bower install && grunt build
  • Profit?!

License

MIT

Author

Luke Mitchell