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 🙏

© 2025 – Pkg Stats / Ryan Hefner

gulp-intermediate

v5.0.0

Published

A gulp helper for tools that need files on disk.

Readme

gulp-intermediate status Coverage Status dependencies

A gulp helper for tools that need files on disk.

Some tools require access to files on disk instead of working with stdin and stdout (e.g., Jekyll, Ruby Sass). gulp-intermediate is a convenience plugin that writes the current vinyl stream to a temporary directory, lets you run commands on the file system, and pushes the results back into the pipe.

NOTE: Writing intermediate files to disk is counter to the gulp philosophy. If possible, use a tool that works with streams. Use gulp-intermediate only if other (better) options aren't available.

Install

$ npm install --save-dev gulp-intermediate

Usage

var gulp = require('gulp');
var spawn = require('child-process').spawn;
var intermediate = require('gulp-intermediate');

gulp.task('default', function () {
  return gulp.src('app/**/*.jade')
    .pipe(intermediate({ output: '_site' }, function (tempDir, cb) {
      // Run a command on the files in tempDir and write the results to
      // the specified output directory.
      var command = spawn('a_command', ['--dest', '_site'], {cwd: tempDir});
      command.on('close', cb);
    }))
    .pipe(gulp.dest('dist'));
});

For more examples see recipes.md.

API

intermediate([options], [process])

options

Type: object
Optional

output

Type: string Default: '.'

The directory read back into the stream when processing is finished. Relative to tempDir.

container

Type: string
Default: random uuid

The directory that files are written to, relative to the operating system's temporary directry. Defaults to a unique random directory on every run.

The container is emptied before every run.

process(tempDir, cb, [fileProps])

Type: function
Optional

Run your commands inside the process callback. process comes with three arguments:

  • tempDir: The absolute path to the directory containing your temporary files. If using spawn you may want to set the cwd option to tempDir.
  • cb: A callback function to call when the processing is finished. It pushes the output files back into the gulp stream.
  • fileProps: An object with some information about the files that have been written to the temp directory.
    • fileProps.cwd: The original vinyl CWD.

Notes

The files are written to tempDir using the vinyl file object's relative path, just like gulp.dest() writes to the output directory. Make sure you understand how globbing works to avoid unexpected errors: for example, the files in gulp.src(['files/*.json', config.yml]) will all be output at the root of tempDir.

Consider passing the { base: '.' } option to glob.src if you need to output a src glob as it exists on disk. When in doubt, log tempDir to the console and open it to see what's going on.

License

MIT © Rob Wierzbowski