Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ianrose/gulp-boilerplate

Gulp boilerplate
https://github.com/ianrose/gulp-boilerplate

boilerplate cssnext gulp handlebars rev sass static-site webpack yaml

Last synced: 3 months ago
JSON representation

Gulp boilerplate

Awesome Lists containing this project

README

        

# Gulp Boilerplate

A starting point for creating static websites.

Features:
* Sass/SCSS
* Handlebars templating with Frontmatter, global data `./src/data/globals.json`, and namespaced by file name global data `./src/data/**/*.json`
* Webpack
* Babel
* Live injection/reload with BrowserSync
* StandardJS
* Stylelint Standard
* Rev styles and scripts
* Sourcemaps
* PostCSS-cssnext
* PostCSS cssnano

### Getting Started

Install all dependencies using npm:

```sh
nvm use
npm install
```

To Develop:

```sh
npm run dev
```

You can view the website at one of the given access URLs:

```sh
[BS] Access URLs:
----------------------------------
Local: http://localhost:3000
External: http://10.0.X.XX:3000
----------------------------------
```

To Build:

```sh
npm run build
```

### Credits

- Based upon [https://github.com/jadnco/boilerplate](https://github.com/jadnco/boilerplate)