1 Star 0 Fork 27

沉淀/yn

forked from 洋子/yn 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
download-pandoc.js 663 Bytes
一键复制 编辑 原始数据 按行查看 历史
洋子 提交于 2019-08-14 20:12 . 更改目录结构
const os = require('os')
const fs = require('fs')
const path = require('path')
const request = require('request')
const filename = os.platform() + '-' + 'pandoc-2.7.3' + (os.platform() === 'win32' ? '.exe' : '')
const downloadUrl = 'https://github.com/purocean/yn/releases/download/v1.1/' + filename
const dir = path.join(__dirname, './bin')
if (!fs.existsSync(dir)) {
fs.mkdirSync(dir)
}
const filePath = path.join(dir, filename)
if (fs.existsSync(filePath)) {
console.warn('Pandoc exists. Skip download.', filePath)
} else {
console.info('Download pandoc', downloadUrl, filename, filePath)
request(downloadUrl).pipe(fs.createWriteStream(filePath))
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/complete_info/yn.git
git@gitee.com:complete_info/yn.git
complete_info
yn
yn
master

搜索帮助