@xygengcn/koa-api-docs
v0.0.4
Published
快速生成koa-api接口文档
Downloads
10
Maintainers
Readme
Koa-api-docs
支持koa-api插件自动生成doc文档
操作
yarn run devimport Api from '@xygengcn/koa-api';
import path from 'path';
import Doc from '@xygengcn/koa-api-docs';
const api = new Api({
controllerPath: path.join(__dirname, '../node_modules/@xygengcn/koa-api/dist/controller'),
error: {
message: {
notFound: 'hahah'
}
}
});
api.run(Doc({ path: path.join(__dirname, '../docs'), docsify: true }));
