npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

zkflow-angular

v1.4.0

Published

Gulp tasks for AngularJS projects powered by ZKflow

Downloads

37

Readme

ZKflow for AngularJS

Gulp tasks for AngularJS projects powered by ZKflow

Shields

npm npm npm Travis Code Climate David David GitHub forks GitHub stars GitHub followers

Features

  • Sass + sassdoc + css globbing + autoprefixer

  • Browserify + ngannotate

  • Assets management

  • Bower

  • AngularJS templates embedded in js

  • E2E tests with protractor and cucumber

  • Development environment

    • Webserver with livereload
    • Watching files for changes and full, fast, incremental rebuilds
    • Unit tests with karma
    • jshint
    • jsbeautifier
  • Production environment

    • js, css, jpg, png and svg minification
    • cache busting
  • Continous integration

    • build + jshint + jsbeautifier + tests + e2e with guaranteed non-zero exit status on error

Why not just write tasks yourself?

Usually simple gulp tasks have a lot of problems, which are resolved in ZKflow

  • tasks immune to errors resulting crashed watchers
  • tasks parametrized with tasks modes
  • tasks cannot run few times simultaneously after few quick changes
  • in develop mode if task detect some errors it will hold execution until all errors will be corrected and then it will let the rest of dependent tasks run
  • tasks in prod mode always returns non-zero exit status on error

Requirements

You need:

nodejs

If you've never used Node or npm before, you'll need to install Node. If you use homebrew, do:

brew install node

Otherwise, you can download and install it manually.

updated npm

Update npm by running

npm update npm -g

node-gyp dependencies

Node-gyp is used to compile native extensions to node. Zkflow does not require node-gyp directly, but it is installed by its dependencies. To install this dependencies properly you need to satisfy node-gyp requirements. Go to node-gyp github page and follow instructions in "You will also need to install" paragraph in README file (python etc.)

Installation

ZKflow for AngularJS is available through npm

npm install --save gulp zkflow-angular

Put this line in your gulpfile.js

require('zkflow-angular').init();

This will create a set of tasks in gulp, which you will be able to use from console

Development flow

How you can use ZKflow gulp tasks to work with Your AngularJS project

write code and test

Run in project root directory

./node_modules/.bin/gulp

or

./node_modules/.bin/gulp default

This task will

  • clean whole output dir (dev/)
  • bundle all your js with browserify and watch file changes with watchify
  • bundle all your styles with sass, css globbing and autoprefix
  • generate documentation with sassdoc if enabled
  • run jshint and rerun on any js file change
  • run tests with karma and browserify and watch file changes with watchify
  • run bower install
  • bundle your angular templates into angular module (.tmp/templates.js) and rebundle on any template file change
  • copy your assets and copy any newly created asset since then
  • copy Your index.html and inject styles, scripts, angular main module name into it. Redo on index.html change.
  • start gulp-webserver with livereload
  • open Your default web browser with proper address.

Write some code, enjoy the results

write e2e tests

Run in project root directory

./node_modules/.bin/gulp e2e

This task will

  • clean whole output dir (test/)
  • same as in default task, but will try to start from test module (where you can put Your e2e mocks)
  • run protractor and rerun every time you press 'r'

Write some tests

beautify your code

Run in project root directory

./node_modules/.bin/gulp beautify

all your code will be automatically beatified with jsbeautifier

check everything

Run in project root directory

./node_modules/.bin/gulp ci

This task will fail if

  • code isn't beautified
  • code isn't jshinted
  • any of karma tests will fail
  • any of protractor e2e tests will fail
  • build fail (sass, browserify)

You definitly should add this task to your CI server. This task can be splitted into stages. ./node_modules/.bin/gulp ci is an equivalent for

./node_modules/.bin/gulp ci-static-analysis
./node_modules/.bin/gulp ci-test
./node_modules/.bin/gulp ci-build
./node_modules/.bin/gulp ci-e2e

commit :D

git commit -m 'awesome code'

Production flow

installing

npm install

building

./node_modules/.bin/gulp build

This task will

  • clean whole output dir (dist/)
  • bundle all your js with browserify and minify with uglifyjs
  • bundle all your styles with sass, css globbing, autoprefix and minify with csso
  • generate documentation with sassdoc if enabled
  • run bower install
  • bundle your angular templates into angular module (.tmp/templates.js) and minify with htmlminify
  • copy your assets and minify all .png/.jpg/.gif/.svg
  • copy Your index.html, htmlminify and inject styles, scripts, angular main module name into it.
  • Do cache busting

Apache/Nginx

Point it to ./dist directory, and configure your server to fallback to index.html if file not found (to work with router html5 mode)

Directory structure

  • dist/ - build output
  • dev/ - dev output
  • test/ - e2e output

Files

.gitignore

You should probably add this entries in .gitignore file

bower_components/
npm-debug.log
node_modules/
.tmp/
dist/
dev/
test/
reports/
docs/

src/index.html

<!DOCTYPE html>
<html ng-app="<%= angularMainModuleName %>" lang="en">

<head>
  <meta charset="UTF-8">
  <title></title>
</head>

<body ng-controller="appNameController">

  <!-- inject:js -->
  <!-- endinject -->
</body>

</html>

src/index.js

'use strict';

var angular = require('angular');

angular.module('app', [
    require('../.tmp/templates.js').name
  ])
  .controller('appNameController', /** @ngInject */ function() {
  });

API

If you get 'task not found' error from gulp, you probably should pass gulp to init

require('zkflow-angular').init(undefined, undefined, require('gulp'));

options

You can pass options object to init function

require('zkflow-angular').init(options, outputDirsMap);

For every task options are merged only 1 level deep. Deeper they will be overwritten.

For example if you have default options

{
  someTask: {
      option1: 1
      option2: 2
      option3: {
          subOption1: 3
          subOption2: 4
      }
  }
}

and you pass to init

{
  someTask: {
      option1: 11
      option3: {
          subOption1: 5
      }
  }
}

actual task options are

{
  someTask: {
      option1: 11
      option2: 2
      option3: {
          subOption1: 5
      }
  }
}

Default options

We recommend using as much default options as possible. They are based on our experience with AngularJS and they set up some solid structure for your project.

{
  assets: {
    task: require('zkflow-angular/src/tasks/assets'),
    enabled: true,
    dependencies: [],
    globs: 'src/**/_assets/**',
    globsOptions: {
      base: 'src/'
    },
    imagemin: undefined //options for gulp-imagemin
  },
  beautify: {
    task: require('zkflow-angular/src/tasks/beautify')
    enabled: true,
    dependencies: [],
    globs: [
      'src/*.js',
      'src/**/*.js',
      'src/*.html',
      'src/**/*.html',
      'gulp/*.js',
      'gulp/**/*.js',
      'gulpfile.js'
    ],
    globsOptions: {
      base: './'
    }
  },
  bower: {
    task: require('zkflow-angular/src/tasks/bower')
    enabled: true,
    dependencies: [],
    globs: 'bower_components/**',
    globsOptions: {
      base: './'
    },
    outputDirSuffix: ''
  },
  clean: {
    task: require('zkflow-angular/src/tasks/clean')
    enabled: true,
    dependencies: []
  },  
  jshint: {
    task: require('zkflow-angular/src/tasks/jshint')
    enabled: true,
    dependencies: [],
    globs: [
      'gulpfile.js',
      'gulp/*.js',
      'gulp/**/*.js',
      'src/*.js',
      'src/**/*.js'
    ],
    globsOptions: undefined,
    jshintrc: false
  },
  templates: {
    task: require('zkflow-angular/src/tasks/templates')
    enabled: true,
    dependencies: [],
    globs: [
      'src/**/_templates/*.html',
      'src/**/_templates/**/*.html'
    ],
    globsOptions: undefined,
    minifyHtml: {
      empty: true,
      spare: true,
      quotes: true
    },
    templateCache: {
      standalone: true,
      module: 'zk.templates',
      root: '/',
      moduleSystem: 'browserify',
      templateFooter: '}]).name;'
    },
    templateModuleFileName: 'templates.js',
    outputDir: '.tmp/'
  },
  'webdriver-update': {
    task: require('zkflow-angular/src/tasks/webdriverUpdate')
    enabled: true,
    dependencies: [],
    webdriverUpdate: undefined
  },  
  webserver: {
    task: require('zkflow-angular/src/tasks/webserver')
    enabled: true,
    dependencies: [],
    host: 'localhost',
    docsGlobs: 'docs/',
    docsWebserver: {
      livereload: {
        enable: true,
        port: 35730
      },
      directoryListing: {
        enable: true,
        path: 'docs/'
      },
      open: true,
      port: 8010
    }
  },
  assemble: {
    task: require('zkflow-angular/src/tasks/sequence'),
    enabled: true,
    dependencies: [],
    sequence: [
      'clean', ['inject', 'assets']
    ],
    mode: undefined
  },
  build: {
    task: require('zkflow-angular/src/tasks/sequence'),
    enabled: true,
    dependencies: [],
    sequence: [
      'assemble'
    ],
     mode: {
       env: 'prod',
       watch: false
     }
  },
  ci: {
    task: require('zkflow-angular/src/tasks/sequence'),
    enabled: true,
    dependencies: [],
    sequence: [
      'ci-static-analysis',
      'ci-test',
      'ci-build',
      'ci-e2e'
    ],
    mode: undefined
  },
  'ci-build': {
    task: require('zkflow-angular/src/tasks/sequence'),
    enabled: true,
    dependencies: [],
    sequence: [
      ['assemble']
    ],
    mode: {
      env: 'prod',
      watch: false
    }
  },
  'ci-e2e': {
    task: require('zkflow-angular/src/tasks/sequence'),
    enabled: true,
    dependencies: [],
    sequence: [
      ['e2e']
    ],
    mode: {
      env: 'test',
      watch: false
    }
  },
  'ci-static-analysis': {
    task: require('zkflow-angular/src/tasks/sequence'),
    enabled: true,
    dependencies: [],
    sequence: [
      ['beautify', 'jshint']
    ],
    mode: {
      env: 'prod',
      watch: false
    }
  },
  'ci-test': {
    task: require('zkflow-angular/src/tasks/sequence'),
    enabled: true,
    dependencies: [],
    sequence: [
      ['test']
    ],
    mode: {
      env: 'prod',
      watch: false
    }
  },
  css: {
    task: require('zkflow-angular/src/tasks/css'),
    enabled: true,
    dependencies: ['bower']
    globs: [
      'src/index.scss',
      'src/**/_styles/*.{scss,sass}',
      'src/**/_styles/**/*.{scss,sass}'
    ],
    globsOptions: undefined,
    outputDirSuffix: '',
    cssGlobbing: {
      extensions: ['.sass', '.scss'],
      scssImportPath: {
        leading_underscore: false,
        filename_extension: false
      }
    },
    autoprefixer: {
      browsers: ['last 2 versions', 'ie 9'],
      cascade: false
    },
    sass: undefined,
    sourcemapsInit: undefined,
    sourcemapsWrite: undefined,
    cssoStructureMinimization: undefined,
    sassdoc: {
      dest: 'docs/sass/'
    }
  },
  default: {
    task: require('zkflow-angular/src/tasks/sequence'),
    enabled: true,
    dependencies: [],
    sequence: [
      'clean', ['inject', 'assets', 'jshint', 'test'],
      'webserver'
    ],
    mode: undefined
  },
  e2e: {
    task: require('zkflow-angular/src/tasks/protractor'),
    enabled: true,
    dependencies: ['webdriver-update', 'assemble'],
    globs: [
      'e2e/features/*.feature',
      'e2e/features/**/*.feature'
    ],
    globsOptions: undefined
    customConfigFiles: false,
    configFile: 'protractor.conf.js',
    watchConfigFile: 'protractor.watch.conf.js'
  },
  inject: {
    task: require('zkflow-angular/src/tasks/inject'),
    enabled: true,
    dependencies: ['js', 'css'],
    globs: 'src/index.html',
    globsOptions: undefined
    injectablesGlobs: [
      'index*.js',
      'index*.css'
    ],
    injectablesGlobsOptions: {
      read: false
    },
    headInjectablesGlobs: undefined,
    absolute: true,
    prodAngularMainModuleName: 'app',
    devAngularMainModuleName: 'appDev',
    testAngularMainModuleName: 'appTest',
    minifyHtml: {
      empty: true,
      spare: true,
      quotes: true
    }
  },
  js: {
    task: require('zkflow-task-browserify'),
    dependencies: ['bower', 'templates'],
    browserifyTransforms: [
      require('browserify-ngannotate')
    ]
  },
  test: {
    task: require('zkflow-task-karma'),
    dependencies: ['bower', 'templates'],
    browsers: ['PhantomJS'],
    plugins: [require('karma-phantomjs-launcher')]
  }
}

output dirs map

You can pass output dirs map object to init function. This object maps current environment to output dir.

require('zkflow-angular').init(options, outputDirsMap);

Default output dirs map

{
  prod: 'dist/',
  test: 'test/',
  dev: 'dev/'
}

mode

You can retrieve mode object from zkflow

var mode = require('zkflow-angular').mode;

This object is shared across all tasks and it define mode of operation.

Default mode

{
  env: 'dev',
  watch: true,
  angularMainModuleProdFallback: false
}

Some of the mode properties can be changed on run by environment variables

ZKFLOW_ENV=prod ZKFLOW_WATCH=false ./node_modules/.bin/gulp css

which is equivalent to

bamboo_ZKFLOW_ENV=prod bamboo_ZKFLOW_WATCH=false ./node_modules/.bin/gulp css

Some tasks overwrites mode

Sponsors