Giter Club home page Giter Club logo

node-multidep's Introduction

node-multidep

Install and require multiple versions of a package via npm, like so:

var broccoli0 = multidepRequire('broccoli', '0.16.3');
var broccoli1 = multidepRequire('broccoli', '1.0.0');

This is useful for integration testing. It's perhaps not robust enough for production code.

See Also: The dynavers tool is based on this library. Whereas multidep provides an explicit multidepRequire call, dynavers monkey-patches Node's require mechanism, so that require calls from anywhere will use the package version you specify.

Installation

npm install --save-dev multidep

Usage

Specifying which versions to install

Create a JSON spec of packages to be installed, e.g. at test/multidep.json:

{
  "path": "test/multidep_modules",
  "versions": {
    "broccoli": ["0.16.3", "1.0.0"]
  }
}

Do not use fuzzy versions ("^0.16.0") - this will cause problems.

Installing the packages from npm

Next, run

./node_modules/.bin/multidep test/multidep.json

In this example, it will create test/multidep_modules and install broccoli 0.16.3 and broccoli 1.0.0 somewhere inside the test/multidep_modules directory.

To run multidep automatically before your test suite (when you run npm test), add it as a "pretest" hook to your package.json:

{
  "scripts": {
    "pretest": "multidep test/multidep.json",
    "test": "..."
  }
}

multidep will not redownload existing packages. If something went wrong, delete its directory first: rm -r test/multidep_modules

multidepRequire: Requiring specific package versions

You can now require the different versions like so:

var multidepRequire = require('multidep')('test/multidep.json');

var broccoli0 = multidepRequire('broccoli', '0.16.3');
var broccoli1 = multidepRequire('broccoli', '1.0.0');

Note that test/multidep.json is relative to the current working directory. This is typically your project root.

multidepRequire.forEachVersion: Iterating over all versions

To iterate over each version, use the .forEachVersion helper method.

multidepRequire.forEachVersion('broccoli', function(version, broccoli) {
  // Do stuff with the `broccoli` module
});

Testing against the master branch

Sometimes it's useful to test against your local checkout of a package. To facility this, there is a special 'master' version for each package whose presence is detected automatically, without being specified in multidep.json.

First, symlink your checkout to <path>/<package>-master, e.g.

ln -s ~/src/broccoli test/multidep_modules/broccoli-master

Then, try to require it. If it's not present (for example on a CI server), you will get null, rather than an exception:

var multidepRequire = require('multidep')('test/multidep.json');

var broccoliMaster = multidepRequire('broccoli', 'master');
if (broccoliMaster !== null) {
  // Do stuff
}

The multidepRequire.forEachVersion function also includes the 'master' version automatically when it's present.

node-multidep's People

Contributors

joliss avatar

Watchers

 avatar

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.