All Projects → woliveiras → kibe

woliveiras / kibe

Licence: other
A simple Yeoman Generator to start projects with the most common tasks of my workflow using Gulp.

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects
shell
77523 projects

Projects that are alternatives of or similar to kibe

generator-vintage-frontend
Modern front-end workflow
Stars: ✭ 15 (-54.55%)
Mutual labels:  gulp, yeoman
Generator Jekyllized
A Yeoman generator for Jekyll to rapidly build sites using Gulp
Stars: ✭ 332 (+906.06%)
Mutual labels:  gulp, yeoman
generator-yeomify-landing
Yeoman generator for landing project powered by Gulp
Stars: ✭ 29 (-12.12%)
Mutual labels:  gulp, yeoman
generator-vars-jekyll
Generator for raw web app with CircleCI, Jekyll, Webpack, Express + more.
Stars: ✭ 18 (-45.45%)
Mutual labels:  gulp, yeoman
Generator Buildabanner
Yeoman workflow to get a standard or DoubleClick banner started quickly.
Stars: ✭ 49 (+48.48%)
Mutual labels:  gulp, yeoman
generator-angular-pro
AngularJS project generator for scalable, enterprise-grade web and mobile applications
Stars: ✭ 43 (+30.3%)
Mutual labels:  gulp, yeoman
Generator Webappstarter
Quick start a web app for mobile.Automatically adjusts according to a device’s screen size without any extra work.
Stars: ✭ 298 (+803.03%)
Mutual labels:  gulp, yeoman
generator-veams
Scaffold modern frontend web apps or web pages with a static site generator (Assemble or Mangony), Grunt and/or Gulp, Sass and Bower. Use modern frameworks like Bourbon, Bootstrap or Foundation and structure your JavaScript with ES Harmony support.
Stars: ✭ 45 (+36.36%)
Mutual labels:  gulp, yeoman
Generator Fountain Webapp
Yeoman 'fountain' generator to start a webapp
Stars: ✭ 985 (+2884.85%)
Mutual labels:  gulp, yeoman
Generator Gulp Express Webapp
Yeoman generator for building a simple web app using express + gulp. This project contains proper project and build structure to be easily extensible.
Stars: ✭ 8 (-75.76%)
Mutual labels:  gulp, yeoman
generator-sf
Yeoman generator that scaffolds out a Symfony PHP app including Browsersync, various CSS preprocessors, jspm, webpack, browserify and Service Worker
Stars: ✭ 14 (-57.58%)
Mutual labels:  gulp, yeoman
Generator Fountain Angular1
Yeoman 'fountain' generator to start a webapp with Angular 1
Stars: ✭ 95 (+187.88%)
Mutual labels:  gulp, yeoman
generator-phaser-browserify
A generator for Phaser using Gulp and Browserify
Stars: ✭ 36 (+9.09%)
Mutual labels:  gulp, yeoman
Generator Webapp
A gulp.js generator for modern webapps
Stars: ✭ 3,784 (+11366.67%)
Mutual labels:  gulp, yeoman
Generator Fountain Angular2
Yeoman 'fountain' generator to start a webapp with Angular 2
Stars: ✭ 84 (+154.55%)
Mutual labels:  gulp, yeoman
generator-fountain-react
Yeoman 'fountain' generator to start a webapp with React
Stars: ✭ 36 (+9.09%)
Mutual labels:  gulp, yeoman
generator-express-ts
create an app using express and typescript
Stars: ✭ 27 (-18.18%)
Mutual labels:  yeoman
selene
A opinionated Wordpress base theme based on Sage.
Stars: ✭ 31 (-6.06%)
Mutual labels:  gulp
the-subway-of-china
中国地铁图
Stars: ✭ 104 (+215.15%)
Mutual labels:  gulp
practical-front-end
essential front-end skills for .Net developers
Stars: ✭ 28 (-15.15%)
Mutual labels:  gulp

Build Status Coverage Status

kibe

A substitute for the Pastel.

Kibe is a simple Yeoman Generator to start projects with the most common tasks of my workflow using Gulp.

I use:

Operational System dependencies

How to use?

Instalation

Install Yeoman if you don't have installed on your system:

npm i -g yo

Install Kibe on your project:

npm i generator-kibe

Wait and enjoy!!!

The tasks

Configs on Gulp

In the gulp.config.js file have the variables:

{
  dev     : './src/',
  js      : './src/js/',
  mainjs  : 'main.js',
  styl    : './src/styl/',
  sprites : './src/img/sprites/',
  dist    : './dist/',
  img     : './dist/img/'
}

On end of your project

Run:

gulp

Simple, not?

To development

Run gulp one time to prepare the dist folder.

gulp server

Write your code on scr folder.

When finish your work the dist folder already exists and is solemnly send to production!

All tasks

Uglify & Concat JS

Concat and minify JS files.

Run:

gulp js

The concat option on this task is commented to you active if is needed concatenate JS files on your project.

Compile Stylus (<3)

Compile Stylus and execute koutoSwiss, prefixer, jeet and rupture plugins.

Run:

gulp stylus

Minify images

Optimize images with the options:

{
  optimizationLevel: 3, 
  progressive: true,
  interlaced: true
}

Run:

gulp imagemin

Create image Sprites

Get images on ./src/img/sprites/ and create a image sprite on /img/sprite.png.

Run:

gulp sprites

Reload Browsers

Watch files [html, css, js] on dist and reload browsers when you save changes on your editor.

Run:

gulp browser-sync

Thanks @darlanmendonca

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].