Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ianrose/gulp-boilerplate
- Owner: ianrose
- Created: 2018-04-21T23:04:35.000Z (almost 7 years ago)
- Default Branch: main
- Last Pushed: 2023-04-24T02:14:59.000Z (almost 2 years ago)
- Last Synced: 2024-10-07T23:41:21.919Z (4 months ago)
- Topics: boilerplate, cssnext, gulp, handlebars, rev, sass, static-site, webpack, yaml
- Language: JavaScript
- Homepage:
- Size: 1.02 MB
- Stars: 4
- Watchers: 0
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
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)