Future-proof, framework-agnostic, starterkit for modern ES6 web apps using gulp for the build process and jspm to manage dependencies on top of SystemJS
Please see the gulpfile.js for up to date information on what it supports.
- Automagic ES6 support
- Automagically wire-up (All AMD, CommonJS, ES6 Modules, or global) dependencies installed with jspm
- CSS Autoprefixing
- Built-in preview server with BrowserSync
- Automagically compile Sass with libsass
- Automagically lint your scripts with ESLint
- Map compiled CSS to source stylesheets with source maps
- Awesome image optimization
- HTML minification
- Gzip all the things!
- Just vainilla ES6 out of the box.
- No framework preinstalled, but you can use this with React, Angular, Polymer, Ember, you name it. That's your call.
Keep in mind that libsass is feature-wise not fully compatible with Ruby Sass. Check out this curated list of incompatibilities to find out which features are missing.
If your favorite feature is missing and you really need Ruby Sass, you can always switch to gulp-ruby-sass and update the sass
task in gulpfile.js
accordingly.
- Install dependencies:
npm install -g jspm
- Run
npm install
on the project root (where the gulpfile is located) - Go to the
src
directory and runjspm install
- Then, on the project root again, run
gulp serve
to preview and watch for changes - Run
gulp build
to generate a distributable, production-ready,dist
directory