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.
- Host: GitHub
- URL: https://github.com/afaur/es6-bootstrap4
- Owner: afaur
- Created: 2015-09-30T20:25:26.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2015-10-01T13:10:53.000Z (almost 11 years ago)
- Last Synced: 2025-04-06T08:26:28.638Z (over 1 year ago)
- Language: HTML
- Size: 438 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/