import-local-file

v0.2.0
Let a globally installed package use a locally installed version of itself if available
import local require resolve global version prefer cli

import-local-file

NPM version NPM downloads CircleCI donate

Let a globally installed package use a locally installed version of itself if available

Useful for CLI tools that want to defer to the user's locally installed version when available, but still work if it's not installed locally. For example, Poi uses this method.

Install

$ npm install --save import-local-file

Usage

const importLocalFile = require('import-local');

const localFile = importLocalFile(__filename)
if (localFile) {
    console.log('Using local version of this package');
    require(localFile);
} else {
    // Code for both global and local version here…
}

License

MIT © EGOIST forked from Sindre Sorhus

npm i import-local-file

Metadata

  • MIT
  • >=4
  • Sindre Sorhus
  • released 5/8/2017

Downloads

Maintainers