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

https://github.com/afaur/es6-bootstrap4

Start experimenting with bootstrap v4-alpha.
https://github.com/afaur/es6-bootstrap4

Last synced: 6 months ago
JSON representation

Start experimenting with bootstrap v4-alpha.

Awesome Lists containing this project

README

          

# This uses ES6 + bootstrap v4-alpha
- Change files in the `src` folder.
- Build using gulp (`gulp build` or `npm run build`)
- Serve the public folder for testing (`gulp serve` or `npm run serve`)
- Optional: use `gulp watch` or `npm run watch`
- Profit?

### Install all the dependencies
```
npm install
```

### Optional: install gulp globally
```
npm install -g gulp
```

### For building (global gulp)
```
gulp build
```

### For building
```
npm run build
```

### Running in the browser (global gulp)
```
gulp serve
```

### Running in the browser
```
npm run serve
```

### If you wanna Gulp to re-build on every change... (global gulp)
```
gulp watch
```

### If you wanna Gulp to re-build on every change...
```
npm run watch
```

### WTF is ES6?
Simply, the next version of JavaScript that contains some really cool features. You might check out some of these:

- https://wiki.mozilla.org/ES6_plans
- http://globaldev.co.uk/2013/09/es6-part-1/
- http://code.tutsplus.com/tutorials/eight-cool-features-coming-in-es6--net-33175

#### [Gulp]
Task runner to make defining and running the tasks simpler.

[ES6]: http://wiki.ecmascript.org/doku.php?id=harmony:specification_drafts
[Babel]: http://babeljs.io/
[Gulp]: http://gulpjs.com/