mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 22:04:26 +00:00

PR-URL: https://github.com/nodejs/node/pull/40369 Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Danielle Adams <adamzdanielle@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
49 lines
1.0 KiB
JavaScript
49 lines
1.0 KiB
JavaScript
const opener = require('opener')
|
|
|
|
const { URL } = require('url')
|
|
|
|
// attempt to open URL in web-browser, print address otherwise:
|
|
const open = async (npm, url, errMsg) => {
|
|
url = encodeURI(url)
|
|
const browser = npm.config.get('browser')
|
|
|
|
function printAlternateMsg () {
|
|
const json = npm.config.get('json')
|
|
const alternateMsg = json
|
|
? JSON.stringify({
|
|
title: errMsg,
|
|
url,
|
|
}, null, 2)
|
|
: `${errMsg}:\n ${url}\n`
|
|
|
|
npm.output(alternateMsg)
|
|
}
|
|
|
|
if (browser === false) {
|
|
printAlternateMsg()
|
|
return
|
|
}
|
|
|
|
try {
|
|
if (!/^(https?|file):$/.test(new URL(url).protocol))
|
|
throw new Error()
|
|
} catch (_) {
|
|
throw new Error('Invalid URL: ' + url)
|
|
}
|
|
|
|
const command = browser === true ? null : browser
|
|
await new Promise((resolve, reject) => {
|
|
opener(url, { command }, (err) => {
|
|
if (err) {
|
|
if (err.code === 'ENOENT')
|
|
printAlternateMsg()
|
|
else
|
|
return reject(err)
|
|
}
|
|
return resolve()
|
|
})
|
|
})
|
|
}
|
|
|
|
module.exports = open
|