mirror of
https://github.com/pnpm/pnpm.git
synced 2026-02-01 02:32:28 -05:00
266 lines
8.9 KiB
TypeScript
266 lines
8.9 KiB
TypeScript
import fs, { type Stats } from 'fs'
|
|
import path from 'path'
|
|
import util from 'util'
|
|
import { docsUrl } from '@pnpm/cli-utils'
|
|
import { createResolver } from '@pnpm/client'
|
|
import { parseWantedDependency } from '@pnpm/parse-wanted-dependency'
|
|
import { OUTPUT_OPTIONS } from '@pnpm/common-cli-options-help'
|
|
import { type Config, types } from '@pnpm/config'
|
|
import { createHexHash } from '@pnpm/crypto.hash'
|
|
import { PnpmError } from '@pnpm/error'
|
|
import { add } from '@pnpm/plugin-commands-installation'
|
|
import { readPackageJsonFromDir } from '@pnpm/read-package-json'
|
|
import { getBinsFromPackageManifest } from '@pnpm/package-bins'
|
|
import { type PnpmSettings } from '@pnpm/types'
|
|
import execa from 'execa'
|
|
import pick from 'ramda/src/pick'
|
|
import renderHelp from 'render-help'
|
|
import symlinkDir from 'symlink-dir'
|
|
import { makeEnv } from './makeEnv'
|
|
|
|
export const skipPackageManagerCheck = true
|
|
|
|
export const commandNames = ['dlx']
|
|
|
|
export const shorthands: Record<string, string> = {
|
|
c: '--shell-mode',
|
|
}
|
|
|
|
export function rcOptionsTypes (): Record<string, unknown> {
|
|
return {
|
|
...pick([
|
|
'use-node-version',
|
|
], types),
|
|
'shell-mode': Boolean,
|
|
}
|
|
}
|
|
|
|
export const cliOptionsTypes = (): Record<string, unknown> => ({
|
|
...rcOptionsTypes(),
|
|
package: [String, Array],
|
|
'allow-build': [String, Array],
|
|
})
|
|
|
|
export function help (): string {
|
|
return renderHelp({
|
|
description: 'Run a package in a temporary environment.',
|
|
descriptionLists: [
|
|
{
|
|
title: 'Options',
|
|
list: [
|
|
{
|
|
description: 'The package to install before running the command',
|
|
name: '--package',
|
|
},
|
|
{
|
|
description: 'A list of package names that are allowed to run postinstall scripts during installation',
|
|
name: '--allow-build',
|
|
},
|
|
{
|
|
description: 'Runs the script inside of a shell. Uses /bin/sh on UNIX and \\cmd.exe on Windows.',
|
|
name: '--shell-mode',
|
|
shortAlias: '-c',
|
|
},
|
|
],
|
|
},
|
|
OUTPUT_OPTIONS,
|
|
],
|
|
url: docsUrl('dlx'),
|
|
usages: ['pnpm dlx <command> [args...]'],
|
|
})
|
|
}
|
|
|
|
export type DlxCommandOptions = {
|
|
package?: string[]
|
|
shellMode?: boolean
|
|
allowBuild?: string[]
|
|
} & Pick<Config, 'extraBinPaths' | 'registries' | 'reporter' | 'userAgent' | 'cacheDir' | 'dlxCacheMaxAge' | 'useNodeVersion' | 'symlink'> & Omit<add.AddCommandOptions, 'rootProjectManifestDir'> & PnpmSettings
|
|
|
|
export async function handler (
|
|
opts: DlxCommandOptions,
|
|
[command, ...args]: string[]
|
|
): Promise<{ exitCode: number }> {
|
|
const pkgs = opts.package ?? [command]
|
|
const { resolve } = createResolver({
|
|
...opts,
|
|
authConfig: opts.rawConfig,
|
|
})
|
|
const resolvedPkgAliases: string[] = []
|
|
const resolvedPkgs = await Promise.all(pkgs.map(async (pkg) => {
|
|
const { alias, bareSpecifier } = parseWantedDependency(pkg) || {}
|
|
if (alias == null) return pkg
|
|
resolvedPkgAliases.push(alias)
|
|
const resolved = await resolve({ alias, bareSpecifier }, {
|
|
lockfileDir: opts.lockfileDir ?? opts.dir,
|
|
preferredVersions: {},
|
|
projectDir: opts.dir,
|
|
})
|
|
return resolved.id
|
|
}))
|
|
const { cacheLink, cacheExists, cachedDir } = findCache(resolvedPkgs, {
|
|
dlxCacheMaxAge: opts.dlxCacheMaxAge,
|
|
cacheDir: opts.cacheDir,
|
|
registries: opts.registries,
|
|
allowBuild: opts.allowBuild ?? [],
|
|
})
|
|
if (!cacheExists) {
|
|
fs.mkdirSync(cachedDir, { recursive: true })
|
|
await add.handler({
|
|
...opts,
|
|
bin: path.join(cachedDir, 'node_modules/.bin'),
|
|
dir: cachedDir,
|
|
lockfileDir: cachedDir,
|
|
onlyBuiltDependencies: [...resolvedPkgAliases, ...(opts.allowBuild ?? [])],
|
|
rootProjectManifestDir: cachedDir,
|
|
saveProd: true, // dlx will be looking for the package in the "dependencies" field!
|
|
saveDev: false,
|
|
saveOptional: false,
|
|
savePeer: false,
|
|
symlink: true,
|
|
workspaceDir: undefined,
|
|
}, resolvedPkgs)
|
|
try {
|
|
await symlinkDir(cachedDir, cacheLink, { overwrite: true })
|
|
} catch (error) {
|
|
// EBUSY means that there is another dlx process running in parallel that has acquired the cache link first.
|
|
// Similarly, EEXIST means that another dlx process has created the cache link before this process.
|
|
// The link created by the other process is just as up-to-date as the link the current process was attempting
|
|
// to create. Therefore, instead of re-attempting to create the current link again, it is just as good to let
|
|
// the other link stay. The current process should yield.
|
|
if (!util.types.isNativeError(error) || !('code' in error) || (error.code !== 'EBUSY' && error.code !== 'EEXIST')) {
|
|
throw error
|
|
}
|
|
}
|
|
}
|
|
const modulesDir = path.join(cachedDir, 'node_modules')
|
|
const binsDir = path.join(modulesDir, '.bin')
|
|
const env = makeEnv({
|
|
userAgent: opts.userAgent,
|
|
prependPaths: [binsDir, ...opts.extraBinPaths],
|
|
})
|
|
const binName = opts.package
|
|
? command
|
|
: await getBinName(modulesDir, await getPkgName(cachedDir))
|
|
try {
|
|
await execa(binName, args, {
|
|
cwd: process.cwd(),
|
|
env,
|
|
stdio: 'inherit',
|
|
shell: opts.shellMode ?? false,
|
|
})
|
|
} catch (err: unknown) {
|
|
if (util.types.isNativeError(err) && 'exitCode' in err && err.exitCode != null) {
|
|
return {
|
|
exitCode: err.exitCode as number,
|
|
}
|
|
}
|
|
throw err
|
|
}
|
|
return { exitCode: 0 }
|
|
}
|
|
|
|
async function getPkgName (pkgDir: string): Promise<string> {
|
|
const manifest = await readPackageJsonFromDir(pkgDir)
|
|
const dependencyNames = Object.keys(manifest.dependencies ?? {})
|
|
if (dependencyNames.length === 0) {
|
|
throw new PnpmError('DLX_NO_DEP', 'dlx was unable to find the installed dependency in "dependencies"')
|
|
}
|
|
return dependencyNames[0]
|
|
}
|
|
|
|
async function getBinName (modulesDir: string, pkgName: string): Promise<string> {
|
|
const pkgDir = path.join(modulesDir, pkgName)
|
|
const manifest = await readPackageJsonFromDir(pkgDir)
|
|
const bins = await getBinsFromPackageManifest(manifest, pkgDir)
|
|
if (bins.length === 0) {
|
|
throw new PnpmError('DLX_NO_BIN', `No binaries found in ${pkgName}`)
|
|
}
|
|
if (bins.length === 1) {
|
|
return bins[0].name
|
|
}
|
|
const scopelessPkgName = scopeless(manifest.name)
|
|
const defaultBin = bins.find(({ name }) => name === scopelessPkgName)
|
|
if (defaultBin) return defaultBin.name
|
|
const binNames = bins.map(({ name }) => name)
|
|
throw new PnpmError('DLX_MULTIPLE_BINS', `Could not determine executable to run. ${pkgName} has multiple binaries: ${binNames.join(', ')}`, {
|
|
hint: `Try one of the following:
|
|
${binNames.map(name => `pnpm --package=${pkgName} dlx ${name}`).join('\n')}
|
|
`,
|
|
})
|
|
}
|
|
|
|
function scopeless (pkgName: string): string {
|
|
if (pkgName[0] === '@') {
|
|
return pkgName.split('/')[1]
|
|
}
|
|
return pkgName
|
|
}
|
|
|
|
function findCache (pkgs: string[], opts: {
|
|
cacheDir: string
|
|
dlxCacheMaxAge: number
|
|
registries: Record<string, string>
|
|
allowBuild: string[]
|
|
}): { cacheLink: string, cacheExists: boolean, cachedDir: string } {
|
|
const dlxCommandCacheDir = createDlxCommandCacheDir(pkgs, opts)
|
|
const cacheLink = path.join(dlxCommandCacheDir, 'pkg')
|
|
const cachedDir = getValidCacheDir(cacheLink, opts.dlxCacheMaxAge)
|
|
return {
|
|
cacheLink,
|
|
cachedDir: cachedDir ?? getPrepareDir(dlxCommandCacheDir),
|
|
cacheExists: cachedDir != null,
|
|
}
|
|
}
|
|
|
|
function createDlxCommandCacheDir (
|
|
pkgs: string[],
|
|
opts: {
|
|
registries: Record<string, string>
|
|
cacheDir: string
|
|
allowBuild: string[]
|
|
}
|
|
): string {
|
|
const dlxCacheDir = path.resolve(opts.cacheDir, 'dlx')
|
|
const cacheKey = createCacheKey(pkgs, opts.registries, opts.allowBuild)
|
|
const cachePath = path.join(dlxCacheDir, cacheKey)
|
|
fs.mkdirSync(cachePath, { recursive: true })
|
|
return cachePath
|
|
}
|
|
|
|
export function createCacheKey (pkgs: string[], registries: Record<string, string>, allowBuild?: string[]): string {
|
|
const sortedPkgs = [...pkgs].sort((a, b) => a.localeCompare(b))
|
|
const sortedRegistries = Object.entries(registries).sort(([k1], [k2]) => k1.localeCompare(k2))
|
|
const args: unknown[] = [sortedPkgs, sortedRegistries]
|
|
if (allowBuild?.length) {
|
|
args.push({ allowBuild: allowBuild.sort((pkg1, pkg2) => pkg1.localeCompare(pkg2)) })
|
|
}
|
|
const hashStr = JSON.stringify(args)
|
|
return createHexHash(hashStr)
|
|
}
|
|
|
|
function getValidCacheDir (cacheLink: string, dlxCacheMaxAge: number): string | undefined {
|
|
let stats: Stats
|
|
let target: string
|
|
try {
|
|
stats = fs.lstatSync(cacheLink)
|
|
if (stats.isSymbolicLink()) {
|
|
target = fs.realpathSync(cacheLink)
|
|
if (!target) return undefined
|
|
} else {
|
|
return undefined
|
|
}
|
|
} catch (err) {
|
|
if (util.types.isNativeError(err) && 'code' in err && err.code === 'ENOENT') {
|
|
return undefined
|
|
}
|
|
throw err
|
|
}
|
|
const isValid = stats.mtime.getTime() + dlxCacheMaxAge * 60_000 >= new Date().getTime()
|
|
return isValid ? target : undefined
|
|
}
|
|
|
|
function getPrepareDir (cachePath: string): string {
|
|
const name = `${new Date().getTime().toString(16)}-${process.pid.toString(16)}`
|
|
return path.join(cachePath, name)
|
|
}
|