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-async-func-runner

v0.1.10

Published

A gulp task for running asynchronous functions.

Downloads

11

Readme

gulp-async-func-runner

view on npm npm module downloads per month Dependency status Build Status Code
Climate Test Coverage

A gulp task for running asynchronous functions.

Usage

This gulp task expects an options object, an asynchronous function and a callback function. The task runs the asynchronous function passing it the options, a chunk of data, and the callback function.

As a gulp task

Use the task to execute an asynchronous function within a gulp pipe.

var asyncPipe = require('gulp-async-func-runner');
gulp.src('test/*')
    .pipe(asyncPipe(
        opts,
        asyncFunc,
        callback)
    );

API

gulp-async-func-runner ⇒ through2

A gulp task for running asynchronous functions. Returns: through2 - readable-stream/transform

| Param | Type | Default | Description | | --- | --- | --- | --- | | opts | Object | | optional options. Options to be passed to the task function should be provided in this object. | | [opts.oneTimeRun] | Object | false | flag to run the task only once no matter how many data chunks are passed through the stream | | [opts.passThrough] | Object | false | flag to pass data chunks through without modification. Default behaviour is to stream the data transformed by the asynchronous function. Set to passThrough to true if you only want to use the results of the asynchronous function as part of the done callback function. | | task | function | | the asynchronous task to call and wait for callback to be executed. The task must be a function with the following signature: task(options, chunk, enc, callback) - options {Object} - an options object. This will be passed the opts parameter from this module. - chunk {Object} - the current chunk of data passing through stream. - callback - the callback function to be executed once task complete. The callback function has the following signature: callback(error, data). This will be passed the done parameter from this module which must have a matching signature. | | done | function | | the callback function called once the asynchronous task has completed. The function must have the following signature: done(error, data). |

Example
Usage:

var asyncPipe = require('gulp-async-func-runner');

Given a simple asynchronous function:

var asyncFunc = function (opts, cb) {
    assert.equal(opts.testOpt, "test option");
    cb(false, "test data");
};

When executing the function as part of a gulp pipe:

var opts = {
    oneTimeRun: true,
    passThrough: true,
    testOpt: "test option"
};
gulp.src('test/*')
    .pipe(asyncPipe(
        opts,
        function(opts, chunk, cb) {
            asyncFunc(opts, cb); //wrap in function to match the function signature
        },
        function (error, data) {
            //results of the asynchronous function available on data parameter
            ...
        })
    );

Then the pipe will wait for function to complete before continuing:

gulp.src('test/*')
    .pipe(asyncPipe(
        ...
    )
    .on('finish', function(){
        //pipe will not finish before the results of the asynchronous function are available
        ...
    });

documented by jsdoc-to-markdown.

Changelog

License

MIT License (MIT). All rights not explicitly granted in the license are reserved.

Copyright (c) 2015 John Barry

Dependencies

[email protected] - "MIT License (MIT)", documented by npm-licenses.