1 Star 0 Fork 8

李航/koa2-typescript-mongose

forked from CPC123456/koa2-typescript 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
apidoc.js 892 Bytes
一键复制 编辑 原始数据 按行查看 历史
const path = require("path");
const apidoc = require("apidoc");
const fs = require('fs');
const src = path.resolve(__dirname, 'src/routes/');
const dest = path.resolve(__dirname, 'public/apidoc/');
const doc = apidoc.createDoc({src, dest})
if (typeof doc !== 'boolean') {
replaceFile(dest + "/vendor/webfontloader.js","//fonts.googleapis.com/css","");
console.log("成功生成文档!");
const config = require("./env/development.js");
console.log("访问地址:http://127.0.0.1:"+config.port+"/public/apidoc/index.html")
}
function replaceFile(filePath, sourceRegx, targetStr) {
fs.readFile(filePath, function (err, data) {
if (err) {
return err;
}
let str = data.toString();
str = str.replace(sourceRegx, targetStr);
fs.writeFile(filePath, str, function (err) {
if (err) return err;
});
});
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
NodeJS
1
https://gitee.com/li-hang/koa2-typescript-mongose.git
git@gitee.com:li-hang/koa2-typescript-mongose.git
li-hang
koa2-typescript-mongose
koa2-typescript-mongose
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385