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/37606 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
49 lines
1.0 KiB
JavaScript
49 lines
1.0 KiB
JavaScript
const output = require('./output.js')
|
|
const opener = require('opener')
|
|
|
|
const { URL } = require('url')
|
|
|
|
// attempt to open URL in web-browser, print address otherwise:
|
|
const open = async (npm, url, errMsg) => {
|
|
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`
|
|
|
|
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
|