node-jest/import-local
Lu zhiping c0606860b8 Import Upstream version 27.5.1~ds+~cs69.51.22 2022-07-16 13:02:45 +08:00
..
.github Import Upstream version 27.5.1~ds+~cs69.51.22 2022-07-16 13:02:45 +08:00
fixtures Import Upstream version 27.5.1~ds+~cs69.51.22 2022-07-16 13:02:45 +08:00
.editorconfig Import Upstream version 27.5.1~ds+~cs69.51.22 2022-07-16 13:02:45 +08:00
.gitattributes Import Upstream version 27.5.1~ds+~cs69.51.22 2022-07-16 13:02:45 +08:00
.gitignore Import Upstream version 27.5.1~ds+~cs69.51.22 2022-07-16 13:02:45 +08:00
.npmrc Import Upstream version 27.5.1~ds+~cs69.51.22 2022-07-16 13:02:45 +08:00
index.js Import Upstream version 27.5.1~ds+~cs69.51.22 2022-07-16 13:02:45 +08:00
license Import Upstream version 27.5.1~ds+~cs69.51.22 2022-07-16 13:02:45 +08:00
package.json Import Upstream version 27.5.1~ds+~cs69.51.22 2022-07-16 13:02:45 +08:00
readme.md Import Upstream version 27.5.1~ds+~cs69.51.22 2022-07-16 13:02:45 +08:00
test.js Import Upstream version 27.5.1~ds+~cs69.51.22 2022-07-16 13:02:45 +08:00

readme.md

import-local

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, AVA and XO uses this method.

Install

npm install import-local

Usage

import importLocal from 'import-local';

if (importLocal(import.meta.url)) {
	console.log('Using local version of this package');
} else {
	// Code for both global and local version here…
}

You can also pass in __filename when used in a CommonJS context.


Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.