Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jojoee/gulp-starter
:tada: Simple Gulp.js for making Frontend life easier
https://github.com/jojoee/gulp-starter
gulp starter
Last synced: about 2 months ago
JSON representation
:tada: Simple Gulp.js for making Frontend life easier
- Host: GitHub
- URL: https://github.com/jojoee/gulp-starter
- Owner: jojoee
- License: mit
- Created: 2015-06-28T14:57:21.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-02-19T03:54:20.000Z (almost 6 years ago)
- Last Synced: 2024-11-07T12:34:25.040Z (3 months ago)
- Topics: gulp, starter
- Language: JavaScript
- Homepage:
- Size: 116 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gulp Starter
[![Build Status](https://travis-ci.org/jojoee/gulp-starter.svg)](https://travis-ci.org/jojoee/gulp-starter) [![Greenkeeper badge](https://badges.greenkeeper.io/jojoee/gulp-starter.svg)](https://greenkeeper.io/)## Getting Started
1. Install [Node.js](https://nodejs.org/)
2. Install global: `npm install -g yarn bower`
3. Set path (e.g. `cd C:\xampp\htdocs\jojoee.com\gulp-starter`)
4. Go to project: (e.g. `cd simple`)
5. Install dependencies: `bower install && npm install`## Note
- Code style: [Airbnb](https://github.com/airbnb/javascript)## Projects
### browserify
- [x] Less
- [x] ES6
- [x] Testing with `mocha`
- [x] Browsersync
- [ ] Inject compliled `css` without refresh
- [ ] Add UI automated testing (e.g. [Zombie.js](https://github.com/assaf/zombie), [Nightwatch](https://github.com/nightwatchjs/nightwatch))
- [ ] Implement [Shields.io](http://shields.io/)
- [ ] Implement [JSHint](http://jshint.com/)
- [ ] Implement [JSCS](http://jscs.info/)```
Start: `npm run build` or `npm run build.watch`
Test: `npm run test` or `npm run test.watch`
```### php
- [x] PHP
- [x] Browsersync
- [ ] Inject compliled `css` without refresh
- [ ] Implement `phpcs` and add it into `travis````
Need to
- Setup PHP server
- Setup proxy in `gulpfile.js`Start: `npm run build.watch`
```### simple
- [x] Sass
- [x] Testing with `mocha`
- [x] Browsersync
- [ ] Inject compliled `css` without refresh
- [ ] Add UI automated testing (e.g. [Zombie.js](https://github.com/assaf/zombie), [Nightwatch](https://github.com/nightwatchjs/nightwatch))```
Start: `npm run build` or `npm run build.watch`
Test: `npm run test` or `npm run test.watch`
```### simple2
- [x] Sass
- [x] Testing with `mocha`
- [x] Browsersync
- [x] JSHint
- [x] Uglify
- [x] Concat
- [ ] Inject compliled `css` without refresh
- [ ] Add UI automated testing (e.g. [Zombie.js](https://github.com/assaf/zombie), [Nightwatch](https://github.com/nightwatchjs/nightwatch))```
Start: `npm run build` or `npm run build.watch`
Test: `npm run test` or `npm run test.watch`
```### typescript
- [x] TypeScript
- [x] Browsersync
- [ ] Testing
- [ ] Css preprocessor
- [ ] `tsconfig.json`
- [ ] `tslint.json````
Start: `npm run build` or `npm run build.watch`
Test: `npm run test` or `npm run test.watch`Other
- `npm install -g typescript`
- `tsc js/main.ts`
```