| Server IP : 121.121.20.254 / Your IP : 216.73.216.142 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/Program Files/nodejs/node_modules/npm/lib/commands/stage/ |
Upload File : |
const { output, META } = require('proc-log')
const npmFetch = require('npm-registry-fetch')
const { logStageItem } = require('../../utils/key-values.js')
const { validateUUID } = require('../../utils/validate-uuid.js')
const BaseCommand = require('../../base-cmd.js')
class StageView extends BaseCommand {
static description = 'View details of a specific staged package'
static name = 'view'
static usage = ['<stage-id>']
static params = ['json', 'registry']
static positionals = 1
async exec (args) {
if (!args[0]) {
throw this.usageError('Missing required <stage-id>')
}
const stageId = args[0]
validateUUID(stageId, 'stage-id')
const opts = { ...this.npm.flatOptions }
const json = this.npm.config.get('json')
const item = await npmFetch.json(`/-/stage/${stageId}`, opts)
if (json) {
output.standard(JSON.stringify(item, null, 2), { [META]: true, redact: false })
return
}
logStageItem(item, { chalk: this.npm.chalk })
}
}
module.exports = StageView