Giter Site home page Giter Site logo

daniele-rapagnani / gulp-walker Goto Github PK

View Code? Open in Web Editor NEW
4.0 2.0 1.0 45 KB

Dependencies aware incremental building for gulp

License: MIT License

CSS 0.80% JavaScript 98.40% CoffeeScript 0.80%
gulp gulp-plugin auto-reload watch dependency-tree

gulp-walker's Introduction

Information

gulp-walker is a gulp plugin that allows for dependencies aware incremental building. It is conceived to scale well with big projects, with a complex dependecy tree, and to be easily extensible.

Incremental building in Gulp is possible with plugins such as gulp-newer and gulp-cached, but these plugins have no way of handling dependencies between files. Correctly handling dependencies for incremental building is vital to projects using CSS preprocessors or javascript packaging systems, where the modification of an imported file should cause the whole bundle to be rebuilt.

Usage

The following is an example of an hypothetical stylus task.

var cache  = require('gulp-cached');
var filter = require('gulp-filter');

// Your code here...

// Pass all files through the stream to be indexed
gulp.src("**/*.styl")
    // Prevent unchanged files from being indexed again
		.pipe(cache('styles'))
		// Insert gulp-walker here
		.pipe(walker())
	  // Filter the files in the stream to let
	  // through only the files that must be compiled
		.pipe(filter("**/app.styl"))
    // Do your normal compilation/bundling/processing
    // stuff here...

You can find a working example for a stylus + browserify + coffee environment here.

Supported Languages

The following languages are actually supported but there are plans to support many more and you can easily implement your own finder.

  • CoffeeScript
  • JavaScript
  • Stylus

How it works

The plugin builds the dependencies graph by analyzing the incoming files on the gulp stream. It does so by subdividing the analysis in two substeps: finding and resolving. In the finding step the plugin attempts to collect all the inclusion requests inside the source code being analyzed and returns them, unaltered, to the analyzer. The resolving step then tries to find the physical path of the file being requested by using a specific algorithm. To each of this steps one or more strategies can be assigned and custom finders/resolvers are easily implemented.

When one of the previously analyzed files is sent again through the stream, gulp-walker pushes all of its dependencies on the stream too to be processed. By using a plugin such as gulp-filter one can then select which files will actually proceed down the stream to be built (for example the app.css of the bundle including the modified file).

Similar projects

gulp-progeny

Documentation

You can find the documentation here

gulp-walker's People

Contributors

daniele-rapagnani avatar dv92 avatar rapagnani-d avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

dv92

gulp-walker's Issues

Incorrect resolution on commonjs require

When requiring a package sharing the same name of the requiring file

// Inside your "url.js"

var url = require('url'); // npm "url" module

This causes a circular require and gulp crashes..

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.