pax_global_header00006660000000000000000000000064135777634470014541gustar00rootroot0000000000000052 comment=09c9017b77591ced1723bd71ef9f3b5e72349268 npm-run-path-4.0.1/000077500000000000000000000000001357776344700140715ustar00rootroot00000000000000npm-run-path-4.0.1/.editorconfig000066400000000000000000000002571357776344700165520ustar00rootroot00000000000000root = true [*] indent_style = tab end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [*.yml] indent_style = space indent_size = 2 npm-run-path-4.0.1/.gitattributes000066400000000000000000000000231357776344700167570ustar00rootroot00000000000000* text=auto eol=lf npm-run-path-4.0.1/.github/000077500000000000000000000000001357776344700154315ustar00rootroot00000000000000npm-run-path-4.0.1/.github/funding.yml000066400000000000000000000001661357776344700176110ustar00rootroot00000000000000github: sindresorhus open_collective: sindresorhus tidelift: npm/npm-run-path custom: https://sindresorhus.com/donate npm-run-path-4.0.1/.github/security.md000066400000000000000000000002631357776344700176230ustar00rootroot00000000000000# Security Policy To report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security). Tidelift will coordinate the fix and disclosure. npm-run-path-4.0.1/.gitignore000066400000000000000000000000271357776344700160600ustar00rootroot00000000000000node_modules yarn.lock npm-run-path-4.0.1/.npmrc000066400000000000000000000000231357776344700152040ustar00rootroot00000000000000package-lock=false npm-run-path-4.0.1/.travis.yml000066400000000000000000000000651357776344700162030ustar00rootroot00000000000000language: node_js node_js: - '12' - '10' - '8' npm-run-path-4.0.1/index.d.ts000066400000000000000000000044311357776344700157740ustar00rootroot00000000000000declare namespace npmRunPath { interface RunPathOptions { /** Working directory. @default process.cwd() */ readonly cwd?: string; /** PATH to be appended. Default: [`PATH`](https://github.com/sindresorhus/path-key). Set it to an empty string to exclude the default PATH. */ readonly path?: string; /** Path to the Node.js executable to use in child processes if that is different from the current one. Its directory is pushed to the front of PATH. This can be either an absolute path or a path relative to the `cwd` option. @default process.execPath */ readonly execPath?: string; } interface ProcessEnv { [key: string]: string | undefined; } interface EnvOptions { /** Working directory. @default process.cwd() */ readonly cwd?: string; /** Accepts an object of environment variables, like `process.env`, and modifies the PATH using the correct [PATH key](https://github.com/sindresorhus/path-key). Use this if you're modifying the PATH for use in the `child_process` options. */ readonly env?: ProcessEnv; /** Path to the current Node.js executable. Its directory is pushed to the front of PATH. This can be either an absolute path or a path relative to the `cwd` option. @default process.execPath */ readonly execPath?: string; } } declare const npmRunPath: { /** Get your [PATH](https://en.wikipedia.org/wiki/PATH_(variable)) prepended with locally installed binaries. @returns The augmented path string. @example ``` import * as childProcess from 'child_process'; import npmRunPath = require('npm-run-path'); console.log(process.env.PATH); //=> '/usr/local/bin' console.log(npmRunPath()); //=> '/Users/sindresorhus/dev/foo/node_modules/.bin:/Users/sindresorhus/dev/node_modules/.bin:/Users/sindresorhus/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/usr/local/bin' // `foo` is a locally installed binary childProcess.execFileSync('foo', { env: npmRunPath.env() }); ``` */ (options?: npmRunPath.RunPathOptions): string; /** @returns The augmented [`process.env`](https://nodejs.org/api/process.html#process_process_env) object. */ env(options?: npmRunPath.EnvOptions): npmRunPath.ProcessEnv; // TODO: Remove this for the next major release default: typeof npmRunPath; }; export = npmRunPath; npm-run-path-4.0.1/index.js000066400000000000000000000017651357776344700155470ustar00rootroot00000000000000'use strict'; const path = require('path'); const pathKey = require('path-key'); const npmRunPath = options => { options = { cwd: process.cwd(), path: process.env[pathKey()], execPath: process.execPath, ...options }; let previous; let cwdPath = path.resolve(options.cwd); const result = []; while (previous !== cwdPath) { result.push(path.join(cwdPath, 'node_modules/.bin')); previous = cwdPath; cwdPath = path.resolve(cwdPath, '..'); } // Ensure the running `node` binary is used const execPathDir = path.resolve(options.cwd, options.execPath, '..'); result.push(execPathDir); return result.concat(options.path).join(path.delimiter); }; module.exports = npmRunPath; // TODO: Remove this for the next major release module.exports.default = npmRunPath; module.exports.env = options => { options = { env: process.env, ...options }; const env = {...options.env}; const path = pathKey({env}); options.path = env[path]; env[path] = module.exports(options); return env; }; npm-run-path-4.0.1/index.test-d.ts000066400000000000000000000010161357776344700167450ustar00rootroot00000000000000import {expectType} from 'tsd'; import npmRunPath = require('.'); import {ProcessEnv} from '.'; expectType(npmRunPath()); expectType(npmRunPath({cwd: '/foo'})); expectType(npmRunPath({path: '/usr/local/bin'})); expectType(npmRunPath({execPath: '/usr/local/bin'})); expectType(npmRunPath.env()); expectType(npmRunPath.env({cwd: '/foo'})); expectType(npmRunPath.env({env: process.env})); expectType(npmRunPath.env({execPath: '/usr/local/bin'})); npm-run-path-4.0.1/license000066400000000000000000000021251357776344700154360ustar00rootroot00000000000000MIT License Copyright (c) Sindre Sorhus (sindresorhus.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. npm-run-path-4.0.1/package.json000066400000000000000000000013101357776344700163520ustar00rootroot00000000000000{ "name": "npm-run-path", "version": "4.0.1", "description": "Get your PATH prepended with locally installed binaries", "license": "MIT", "repository": "sindresorhus/npm-run-path", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, "engines": { "node": ">=8" }, "scripts": { "test": "xo && ava && tsd" }, "files": [ "index.js", "index.d.ts" ], "keywords": [ "npm", "run", "path", "package", "bin", "binary", "binaries", "script", "cli", "command-line", "execute", "executable" ], "dependencies": { "path-key": "^3.0.0" }, "devDependencies": { "ava": "^1.4.1", "tsd": "^0.7.2", "xo": "^0.24.0" } } npm-run-path-4.0.1/readme.md000066400000000000000000000056251357776344700156600ustar00rootroot00000000000000# npm-run-path [![Build Status](https://travis-ci.org/sindresorhus/npm-run-path.svg?branch=master)](https://travis-ci.org/sindresorhus/npm-run-path) > Get your [PATH](https://en.wikipedia.org/wiki/PATH_(variable)) prepended with locally installed binaries In [npm run scripts](https://docs.npmjs.com/cli/run-script) you can execute locally installed binaries by name. This enables the same outside npm. ## Install ``` $ npm install npm-run-path ``` ## Usage ```js const childProcess = require('child_process'); const npmRunPath = require('npm-run-path'); console.log(process.env.PATH); //=> '/usr/local/bin' console.log(npmRunPath()); //=> '/Users/sindresorhus/dev/foo/node_modules/.bin:/Users/sindresorhus/dev/node_modules/.bin:/Users/sindresorhus/node_modules/.bin:/Users/node_modules/.bin:/node_modules/.bin:/usr/local/bin' // `foo` is a locally installed binary childProcess.execFileSync('foo', { env: npmRunPath.env() }); ``` ## API ### npmRunPath(options?) Returns the augmented path string. #### options Type: `object` ##### cwd Type: `string`
Default: `process.cwd()` Working directory. ##### path Type: `string`
Default: [`PATH`](https://github.com/sindresorhus/path-key) PATH to be appended.
Set it to an empty string to exclude the default PATH. ##### execPath Type: `string`
Default: `process.execPath` Path to the current Node.js executable. Its directory is pushed to the front of PATH. This can be either an absolute path or a path relative to the [`cwd` option](#cwd). ### npmRunPath.env(options?) Returns the augmented [`process.env`](https://nodejs.org/api/process.html#process_process_env) object. #### options Type: `object` ##### cwd Type: `string`
Default: `process.cwd()` Working directory. ##### env Type: `Object` Accepts an object of environment variables, like `process.env`, and modifies the PATH using the correct [PATH key](https://github.com/sindresorhus/path-key). Use this if you're modifying the PATH for use in the `child_process` options. ##### execPath Type: `string`
Default: `process.execPath` Path to the Node.js executable to use in child processes if that is different from the current one. Its directory is pushed to the front of PATH. This can be either an absolute path or a path relative to the [`cwd` option](#cwd). ## Related - [npm-run-path-cli](https://github.com/sindresorhus/npm-run-path-cli) - CLI for this module - [execa](https://github.com/sindresorhus/execa) - Execute a locally installed binary ---
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.
npm-run-path-4.0.1/test.js000066400000000000000000000017471357776344700154170ustar00rootroot00000000000000import path from 'path'; import test from 'ava'; import npmRunPath from '.'; test('main', t => { t.is( npmRunPath({path: ''}).split(path.delimiter)[0], path.join(__dirname, 'node_modules/.bin') ); t.is( npmRunPath.env({env: {PATH: 'foo'}}).PATH.split(path.delimiter)[0], path.join(__dirname, 'node_modules/.bin') ); }); test('push `execPath` later in the PATH', t => { const pathEnv = npmRunPath({path: ''}).split(path.delimiter); t.is(pathEnv[pathEnv.length - 2], path.dirname(process.execPath)); }); test('can change `execPath` with the `execPath` option', t => { const pathEnv = npmRunPath({path: '', execPath: 'test/test'}).split( path.delimiter ); t.is(pathEnv[pathEnv.length - 2], path.resolve(process.cwd(), 'test')); }); test('the `execPath` option is relative to the `cwd` option', t => { const pathEnv = npmRunPath({ path: '', execPath: 'test/test', cwd: '/dir' }).split(path.delimiter); t.is(pathEnv[pathEnv.length - 2], path.normalize('/dir/test')); });