e560358d5d57b8fbb831f57abf7106a04d213c2bc1c535574483f5a3986de743a6de9eddd69ce6125cc91242f99f4173bf34b159a0787473a86021a7e6ce52 798 B

123456789101112131415161718192021222324252627282930
  1. # import-local [![Build Status](https://travis-ci.org/sindresorhus/import-local.svg?branch=master)](https://travis-ci.org/sindresorhus/import-local)
  2. > Let a globally installed package use a locally installed version of itself if available
  3. 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, [AVA](http://ava.li) and [XO](https://github.com/xojs/xo) uses this method.
  4. ## Install
  5. ```
  6. $ npm install import-local
  7. ```
  8. ## Usage
  9. ```js
  10. const importLocal = require('import-local');
  11. if (importLocal(__filename)) {
  12. console.log('Using local version of this package');
  13. } else {
  14. // Code for both global and local version here…
  15. }
  16. ```
  17. ## License
  18. MIT © [Sindre Sorhus](https://sindresorhus.com)