1 Star 0 Fork 115

...The.Lumberer/Yunzai

forked from 时雨◎星空/Yunzai 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.puppeteerrc.cjs 1.16 KB
一键复制 编辑 原始数据 按行查看 历史
🌌 提交于 2023-09-08 12:01 . 细节优化
const os = require("os")
const { existsSync } = require("fs")
const { execSync } = require("child_process")
const arch = os.arch()
let skipDownload = false
let executablePath
if (process.platform == "linux" || process.platform == "android")
for (const item of [
"chromium",
"chromium-browser",
"chrome",
]) try {
const chromiumPath = execSync(`command -v ${item}`).toString().trim()
if (chromiumPath && existsSync(chromiumPath)) {
executablePath = chromiumPath
break
}
} catch (err) {}
if (!executablePath) for (const item of [
"/usr/bin/chromium",
"/usr/bin/chromium-browser",
"/usr/bin/chrome",
"C:/Program Files/Google/Chrome/Application/chrome.exe",
"C:/Program Files (x86)/Microsoft/Edge/Application/msedge.exe",
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome",
"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge",
]) if (existsSync(item)) {
executablePath = item
break
}
if (executablePath || arch == "arm64" || arch == "aarch64") {
(typeof logger == "object" ? logger : console).info(`[Chromium] ${executablePath}`)
skipDownload = true
}
module.exports = { skipDownload, executablePath }
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
NodeJS
1
https://gitee.com/whoami-top/Yunzai.git
git@gitee.com:whoami-top/Yunzai.git
whoami-top
Yunzai
Yunzai
main

搜索帮助