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

n-run

v1.0.3

Published

Run a command against a series of node versions using n

Downloads

14

Readme

Build Status downloads npm Code Climate Test Coverage dependencies

n-run

Run a command against a series of node versions using n

Installation

npm install --save n-run

Summary

n-run takes a command to run, a list of versions (or semver ranges) to run it against, optionally an options object, and a callback to execute when finished.

Usage

The command can be a string like ./index.js --foo bar. The command will be split on spaces and passed to child_process.spawn, thus it's safer to pass command as an array to prevent splitting incorrectly (e.g. something like ./index.js --message "A message with spaces in it").

The list of versions is an array of node and/or io.js versions. These can also be semver ranges (so if you want to run the command against any node v4 binary, passing "4" is sufficient); By default, n-run will select the highest version of node or io.js matching the range that is already installed and skip the version if there isn't one matching. You can override this with the install option below.

The options hash may contain any of the following options (all of which default to false).

  • install: Setting this option to true will cause versions not installed to be installed. This could be either a specific version not already installed or a range which no installed version satisfies. Setting this option to 'latest' will install the latest version matching a range even if another version already installed would satisfy the range. Ex. Assuming you have version 4.0.0 installed, running a command against 4.0.0 and 5.0.0 with install: true will install 5.0.0. Running the command against 4 and 5 with install: true will install the latest version of 5.x. Running the command against 4 and 5 with install: 'latest' will install the latest versions of both 4.x and 5.x.
  • quiet: Do not log anything.
  • global: If true, the first part of the command will be prefixed with the global npm binary path. In other words, if you want to run a command that requires npm install -g, add global: true to your options (e.g. grunt, gulp, yo, etc.). This let's you pass the command as (for example) grunt build (which would normally fail when run with n use <version>). If you need something other than first part of the command to be prefixed, you can just do it yourself. It's probably safe to use process.env.N_PREFIX + '/bin/' unless you've modified that variable. This library uses the npm module to load the global config just in case, but this is an asynchronous operation, so you should probably prefer environment variables when available.

Examples

Run a command against a couple binaries.

var n = require('n-run');
n.run('foo bar', ['4.2.6', '5.5.0'], function(err) {
  // if err is null, the the command "foo bar" was successfully run against all node versions supplied
});

Run a command, but resolve to the most recent matching node versions first.

var n = require('n-run');
n.run('foo bar', ['4', '5'], function(err) {
  // if err is null, the the command "foo bar" was successfully run against all node versions supplied
});

Run a global command.

var n = require('n-run');
n.run('grunt fooBar', ['4.2.6', '5.5.0'], { global: true }, function(err) {
  // if err is null, the the command "foo bar" was successfully run against all node versions supplied
});

Do not log anything or install missing binaries.

var n = require('n-run');
n.run('foo bar', ['4.2.6', '5.5.0'], { quiet: true, install: false }, function(err) {
  // if err is null, the the command "foo bar" was successfully run against all node versions supplied
});

Testing your .travis build matrix

The use case I built n-run for was local testing against a travis build matrix. If you use grunt for tests, you can install grunt-test-matrix and add configuration like:

grunt.initConfig({
  testMatrix: {
    mocha: {
      task: ['mocha:unit', 'mocha:integration']
    }
  }
});

If you use gulp, there isn't a specific plugin, since this isn't exactly a stream-compatible operation, but it's simple to do in a task by installing this and travis-yaml and adding this (tested) code:

var gulp = require('gulp');
var n = require('n-run');
var travisYaml = require('travis-yaml');

gulp.task('run', function(done) {
  travisYaml(function(err, travis) {
    var versions = travis.node_js;
    /*
     * If you include any versions of io.js in your build,
     * enable this block to map the "iojs-v2" style version
     * to one usable by n-run
     */
    //versions = versions.map(function(version) {
      //return version.replace('iojs-v', '');
    //});

    // Replace "unit" with your testing task.
    n.run(['gulp', 'unit'], versions, { global: true }, done);

    /*
     * If you install gulp locally as a dependency, use this line
     * instead of the one above, so that n can find the gulp binary.
     */
    //n.run(['./node_modules/.bin/gulp', 'unit'], versions, done);
  });
});

Contributing

Please see the contribution guidelines.