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

gulp-debounce

v1.0.2

Published

Debounce a gulp stream to prevent the same event firing multiple times

Downloads

1,719

Readme

gulp-debounce

NPM version NPM Downloads Dependency Status

Stream debouncing that works.

This plugin will debounce a stream, that means it will remove/collect duplicate successive events and emit just one after a short timeout. This is useful if you want to prevent unnecessary triggering of build logic when a file is changing too fast. For example because vim (or Coda 2) is saving a copy and then deleting and moving the file, causing three events to trigger instead of one and your build system to churn along unnecessarily.

Installation

npm install --save-dev gulp-debounce

Usage

You can use it to prevent unnecessary sass rebuilds:

var gulp       = require('gulp'),
    size       = require('gulp-size'),
    sass       = require('gulp-sass'),
    watch      = require('gulp-watch'),
    debounce   = require('gulp-debounce'),
    sourcemaps = require('gulp-sourcemaps');

gulp.task('watch', function () {
  return gulp.src('src/**/*.scss')
    .pipe(watch('src/**/*.scss'))
    .pipe(debounce({ wait: 1000 }))
    // whenever a scss file changes before 1000ms have elapsed
    // since the last change, then the event will not be passed along
    .pipe(sourcemaps.init())
    .pipe(sass())
    .pipe(sourcemaps.write('.'))
    .pipe(gulp.dest('build'))
    .pipe(size({showFiles: true}));
});

API

debounce([options])

Creates a pass through stream that will debounce events passing through it, bundling similar events into just one.

Options

options.wait

Type: Number Default: 1000

Milliseconds to wait before letting an event through. If another event similar to this one arrives in that time period, then the timer is restarted and another wait interval must pass.

options.immediate

Type: Boolean Default: false

When true, the first event to arrive passes through, and then all other matching events are dropped until the wait interval elapses. You do not normally want this, use at your own risk.

options.hashingFn

Type: Function Default: function (vinyl) { return vinyl.path; }

The function used to hash events for comparison. The default is to use the file path for comparison.

You could, for example, differentiate between add/change and other events:

gulp.watch('src/**/*.scss')
.pipe(debounce({
  wait: 1000,
  hashingFn: function (vinyl) {
    // this function will hash add/change events to:
    // "true-path/from/vinyl/object"
    // and all other events to
    // "false-path/from/vinyl/object"
    var t = vinyl.event === 'add' || vinyl.event === 'change';
    return t+"-"+vinyl.path;
  }
}))

License

MIT (c) 2016 Mina Nagy Zaki ([email protected])