| const { resolve, dirname, join } = require('node:path')
|
| const Config = require('@npmcli/config')
|
| const which = require('which')
|
| const fs = require('node:fs/promises')
|
| const { definitions, flatten, nerfDarts, shorthands } = require('@npmcli/config/lib/definitions')
|
| const usage = require('./utils/npm-usage.js')
|
| const LogFile = require('./utils/log-file.js')
|
| const Timers = require('./utils/timers.js')
|
| const Display = require('./utils/display.js')
|
| const { log, time, output, META } = require('proc-log')
|
| const { redactLog: replaceInfo } = require('@npmcli/redact')
|
| const pkg = require('../package.json')
|
| const { deref } = require('./utils/cmd-list.js')
|
| const { jsonError, outputError } = require('./utils/output-error.js')
|
|
|
| class Npm {
|
| static get version () {
|
| return pkg.version
|
| }
|
|
|
| static cmd (c) {
|
| const command = deref(c)
|
| if (!command) {
|
| throw Object.assign(new Error(`Unknown command ${c}`), {
|
| code: 'EUNKNOWNCOMMAND',
|
| command: c,
|
| })
|
| }
|
| return require(`./commands/${command}`)
|
| }
|
|
|
| unrefPromises = []
|
| updateNotification = null
|
| argv = []
|
|
|
| #command = null
|
| #runId = new Date().toISOString().replace(/[.:]/g, '_')
|
| #title = 'npm'
|
| #argvClean = []
|
| #npmRoot = null
|
|
|
| #display = null
|
| #logFile = new LogFile()
|
| #timers = new Timers()
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| constructor ({
|
| stdout = process.stdout,
|
| stderr = process.stderr,
|
| npmRoot = dirname(__dirname),
|
| argv = [],
|
| excludeNpmCwd = false,
|
| } = {}) {
|
| this.#display = new Display({ stdout, stderr })
|
| this.#npmRoot = npmRoot
|
| this.config = new Config({
|
| npmPath: this.#npmRoot,
|
| definitions,
|
| flatten,
|
| nerfDarts,
|
| shorthands,
|
| argv: [...process.argv, ...argv],
|
| excludeNpmCwd,
|
| warn: false,
|
| })
|
| }
|
|
|
| async load () {
|
| let err
|
| try {
|
| return await time.start('npm:load', () => this.#load())
|
| } catch (e) {
|
| err = e
|
| }
|
| return this.#handleError(err)
|
| }
|
|
|
| async #load () {
|
| await time.start('npm:load:whichnode', async () => {
|
|
|
| const node = await which(process.argv[0]).catch(() => {})
|
| if (node && node.toUpperCase() !== process.execPath.toUpperCase()) {
|
| log.verbose('node symlink', node)
|
| process.execPath = node
|
| this.config.execPath = node
|
| }
|
| })
|
|
|
| await time.start('npm:load:configload', () => this.config.load())
|
|
|
|
|
| if (this.config.get('versions', 'cli')) {
|
| this.argv = ['version']
|
| this.config.set('usage', false, 'cli')
|
| } else {
|
| this.argv = [...this.config.parsedArgv.remain]
|
| }
|
|
|
|
|
|
|
|
|
| const commandArg = this.argv.shift()
|
|
|
|
|
| const command = deref(commandArg)
|
|
|
| await this.#display.load({
|
| command,
|
| loglevel: this.config.get('loglevel'),
|
| stdoutColor: this.color,
|
| stderrColor: this.logColor,
|
| timing: this.config.get('timing'),
|
| unicode: this.config.get('unicode'),
|
| progress: this.flatOptions.progress,
|
| json: this.config.get('json'),
|
| heading: this.config.get('heading'),
|
| })
|
| process.env.COLOR = this.color ? '1' : '0'
|
|
|
|
|
|
|
| if (this.config.get('version', 'cli')) {
|
| output.standard(this.version)
|
| return { exec: false }
|
| }
|
|
|
|
|
|
|
| await time.start('npm:load:mkdirpcache', () =>
|
| fs.mkdir(this.cache, { recursive: true })
|
| .catch((e) => log.verbose('cache', `could not create cache: ${e}`)))
|
|
|
|
|
| if (this.config.get('logs-max') > 0) {
|
| await time.start('npm:load:mkdirplogs', () =>
|
| fs.mkdir(this.#logsDir, { recursive: true })
|
| .catch((e) => log.verbose('logfile', `could not create logs-dir: ${e}`)))
|
| }
|
|
|
|
|
|
|
| time.start('npm:load:setTitle', () => {
|
| const { parsedArgv: { cooked, remain } } = this.config
|
|
|
|
|
| this.#title = ['npm'].concat(replaceInfo(remain)).join(' ').trim()
|
| process.title = this.#title
|
|
|
|
|
|
|
| this.#argvClean = replaceInfo(cooked)
|
| log.verbose('title', this.title)
|
| log.verbose('argv', this.#argvClean.map(JSON.stringify).join(' '))
|
| })
|
|
|
|
|
|
|
|
|
| this.unrefPromises.push(this.#logFile.load({
|
| command,
|
| path: this.logPath,
|
| logsMax: this.config.get('logs-max'),
|
| timing: this.config.get('timing'),
|
| }))
|
|
|
| this.#timers.load({
|
| path: this.logPath,
|
| timing: this.config.get('timing'),
|
| })
|
|
|
| const configScope = this.config.get('scope')
|
| if (configScope && !/^@/.test(configScope)) {
|
| this.config.set('scope', `@${configScope}`, this.config.find('scope'))
|
| }
|
|
|
| if (this.config.get('force')) {
|
| log.warn('using --force', 'Recommended protections disabled.')
|
| }
|
|
|
| return { exec: true, command: commandArg, args: this.argv }
|
| }
|
|
|
| async exec (cmd, args = this.argv) {
|
| if (!this.#command) {
|
| let err
|
| try {
|
| await this.#exec(cmd, args)
|
| } catch (e) {
|
| err = e
|
| }
|
| return this.#handleError(err)
|
| } else {
|
| return this.#exec(cmd, args)
|
| }
|
| }
|
|
|
|
|
| async #exec (cmd, args) {
|
| const Command = this.constructor.cmd(cmd)
|
| const command = new Command(this)
|
|
|
|
|
| if (!this.#command) {
|
| this.#command = command
|
| process.env.npm_command = this.command
|
| }
|
|
|
|
|
|
|
|
|
| if (!Command.definitions && !Command.subcommands) {
|
| this.config.logWarnings()
|
| }
|
|
|
|
|
| this.config.warn = true
|
|
|
| return this.execCommandClass(command, args, [cmd])
|
| }
|
|
|
|
|
|
|
| async execCommandClass (commandInstance, args, commandPath = []) {
|
| const Command = commandInstance.constructor
|
| const commandName = commandPath.join(':')
|
|
|
|
|
| if (Command.subcommands) {
|
| const subcommandName = args[0]
|
|
|
|
|
| if (this.config.get('usage') && !subcommandName) {
|
| return output.standard(commandInstance.usage)
|
| }
|
|
|
|
|
| if (!subcommandName) {
|
| throw commandInstance.usageError()
|
| }
|
|
|
|
|
| const SubCommand = Command.subcommands[subcommandName]
|
| if (!SubCommand) {
|
| throw commandInstance.usageError(`Unknown subcommand: ${subcommandName}`)
|
| }
|
|
|
|
|
| if (this.config.get('usage')) {
|
| const parentName = commandPath[0]
|
| return output.standard(SubCommand.getUsage(parentName))
|
| }
|
|
|
|
|
| const subcommandInstance = new SubCommand(this)
|
| const subcommandArgs = args.slice(1)
|
| const subcommandPath = [...commandPath, subcommandName]
|
|
|
| return time.start(`command:${subcommandPath.join(':')}`, () =>
|
| this.execCommandClass(subcommandInstance, subcommandArgs, subcommandPath))
|
| }
|
|
|
|
|
| if (this.config.get('usage')) {
|
| return output.standard(commandInstance.usage)
|
| }
|
|
|
| let execWorkspaces = false
|
| const hasWsConfig = this.config.get('workspaces') || this.config.get('workspace').length
|
|
|
| const implicitWs = this.config.get('workspace', 'default').length
|
|
|
| if (hasWsConfig && (!implicitWs || !Command.ignoreImplicitWorkspace)) {
|
| if (this.global) {
|
| throw new Error('Workspaces not supported for global packages')
|
| }
|
| if (!Command.workspaces) {
|
| throw Object.assign(new Error('This command does not support workspaces.'), {
|
| code: 'ENOWORKSPACES',
|
| })
|
| }
|
| execWorkspaces = true
|
| }
|
|
|
|
|
| if (commandInstance.checkDevEngines && !this.global) {
|
| await commandInstance.checkDevEngines()
|
| }
|
|
|
|
|
| if (Command.definitions) {
|
|
|
|
|
| const [flags, positionalArgs] = commandInstance.flags(commandPath.length)
|
| return time.start(`command:${commandName}`, () =>
|
| execWorkspaces
|
| ? commandInstance.execWorkspaces(positionalArgs, flags)
|
| : commandInstance.exec(positionalArgs, flags))
|
| } else {
|
|
|
| this.config.logWarnings()
|
| return time.start(`command:${commandName}`, () =>
|
| execWorkspaces ? commandInstance.execWorkspaces(args) : commandInstance.exec(args))
|
| }
|
| }
|
|
|
|
|
|
|
| unload () {
|
| this.#timers.off()
|
| this.#display.off()
|
| this.#logFile.off()
|
| }
|
|
|
| finish (err) {
|
|
|
| this.#timers.finish({
|
| id: this.#runId,
|
| command: this.#argvClean,
|
| logfiles: this.logFiles,
|
| version: this.version,
|
| })
|
|
|
| output.flush({
|
| [META]: true,
|
|
|
| json: this.loaded && this.config.get('json'),
|
| jsonError: jsonError(err, this),
|
| })
|
| }
|
|
|
| exitErrorMessage () {
|
| if (this.logFiles.length) {
|
| return `A complete log of this run can be found in: ${this.logFiles}`
|
| }
|
|
|
| const logsMax = this.config.get('logs-max')
|
| if (logsMax <= 0) {
|
|
|
| return `Log files were not written due to the config logs-max=${logsMax}`
|
| }
|
|
|
|
|
| return `Log files were not written due to an error writing to the directory: ${this.#logsDir}` +
|
| '\nYou can rerun the command with `--loglevel=verbose` to see the logs in your terminal'
|
| }
|
|
|
| async #handleError (err) {
|
| if (err) {
|
|
|
| const localPkg = await require('@npmcli/package-json')
|
| .normalize(this.localPrefix)
|
| .then(p => p.content)
|
| .catch(() => null)
|
| Object.assign(err, this.#getError(err, { pkg: localPkg }))
|
| }
|
|
|
| this.finish(err)
|
|
|
| if (err) {
|
| throw err
|
| }
|
| }
|
|
|
| #getError (rawErr, opts) {
|
| const { files = [], ...error } = require('./utils/error-message.js').getError(rawErr, {
|
| npm: this,
|
| command: this.#command,
|
| ...opts,
|
| })
|
|
|
| const { writeFileSync } = require('node:fs')
|
| for (const [file, content] of files) {
|
| const filePath = `${this.logPath}${file}`
|
| const fileContent = `'Log files:\n${this.logFiles.join('\n')}\n\n${content.trim()}\n`
|
| try {
|
| writeFileSync(filePath, fileContent)
|
| error.detail.push(['', `\n\nFor a full report see:\n${filePath}`])
|
| } catch (fileErr) {
|
| log.warn('', `Could not write error message to ${file} due to ${fileErr}`)
|
| }
|
| }
|
|
|
| outputError(error)
|
|
|
| return error
|
| }
|
|
|
| get title () {
|
| return this.#title
|
| }
|
|
|
| get loaded () {
|
| return this.config.loaded
|
| }
|
|
|
| get version () {
|
| return this.constructor.version
|
| }
|
|
|
| get command () {
|
| return this.#command?.name
|
| }
|
|
|
| get flatOptions () {
|
| const { flat } = this.config
|
| flat.nodeVersion = process.version
|
| flat.npmVersion = pkg.version
|
| if (this.command) {
|
| flat.npmCommand = this.command
|
| }
|
| return flat
|
| }
|
|
|
|
|
| get color () {
|
| return this.flatOptions.color
|
| }
|
|
|
| get logColor () {
|
| return this.flatOptions.logColor
|
| }
|
|
|
| get noColorChalk () {
|
| return this.#display.chalk.noColor
|
| }
|
|
|
| get chalk () {
|
| return this.#display.chalk.stdout
|
| }
|
|
|
| get logChalk () {
|
| return this.#display.chalk.stderr
|
| }
|
|
|
| get global () {
|
| return this.config.get('global') || this.config.get('location') === 'global'
|
| }
|
|
|
| get silent () {
|
| return this.flatOptions.silent
|
| }
|
|
|
| get lockfileVersion () {
|
| return 2
|
| }
|
|
|
| get started () {
|
| return this.#timers.started
|
| }
|
|
|
| get logFiles () {
|
| return this.#logFile.files
|
| }
|
|
|
| get #logsDir () {
|
| return this.config.get('logs-dir') || join(this.cache, '_logs')
|
| }
|
|
|
| get logPath () {
|
| return resolve(this.#logsDir, `${this.#runId}-`)
|
| }
|
|
|
| get npmRoot () {
|
| return this.#npmRoot
|
| }
|
|
|
| get cache () {
|
| return this.config.get('cache')
|
| }
|
|
|
| get globalPrefix () {
|
| return this.config.globalPrefix
|
| }
|
|
|
| get localPrefix () {
|
| return this.config.localPrefix
|
| }
|
|
|
| get localPackage () {
|
| return this.config.localPackage
|
| }
|
|
|
| get globalDir () {
|
| return process.platform !== 'win32'
|
| ? resolve(this.globalPrefix, 'lib', 'node_modules')
|
| : resolve(this.globalPrefix, 'node_modules')
|
| }
|
|
|
| get localDir () {
|
| return resolve(this.localPrefix, 'node_modules')
|
| }
|
|
|
| get dir () {
|
| return this.global ? this.globalDir : this.localDir
|
| }
|
|
|
| get globalBin () {
|
| const b = this.globalPrefix
|
| return process.platform !== 'win32' ? resolve(b, 'bin') : b
|
| }
|
|
|
| get localBin () {
|
| return resolve(this.dir, '.bin')
|
| }
|
|
|
| get bin () {
|
| return this.global ? this.globalBin : this.localBin
|
| }
|
|
|
| get prefix () {
|
| return this.global ? this.globalPrefix : this.localPrefix
|
| }
|
|
|
| get usage () {
|
| return usage(this)
|
| }
|
| }
|
|
|
| module.exports = Npm
|
|
|