├── .editorconfig ├── .gitignore ├── README.md ├── package.json ├── src ├── analyzer │ ├── index.ts │ └── zhihuHotAnalyze.ts ├── app.ts ├── controller │ ├── DataController.ts │ ├── LoginController.ts │ └── index.ts ├── crowller │ ├── crowller.ts │ └── index.ts ├── decorator │ ├── controller.ts │ ├── index.ts │ ├── request.ts │ └── use.ts ├── interface │ ├── analyze.ts │ ├── index.ts │ └── result.ts ├── middleware │ └── index.ts └── routers │ └── index.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/package.json -------------------------------------------------------------------------------- /src/analyzer/index.ts: -------------------------------------------------------------------------------- 1 | export * from './zhihuHotAnalyze' 2 | -------------------------------------------------------------------------------- /src/analyzer/zhihuHotAnalyze.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/src/analyzer/zhihuHotAnalyze.ts -------------------------------------------------------------------------------- /src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/src/app.ts -------------------------------------------------------------------------------- /src/controller/DataController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/src/controller/DataController.ts -------------------------------------------------------------------------------- /src/controller/LoginController.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/src/controller/LoginController.ts -------------------------------------------------------------------------------- /src/controller/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/src/controller/index.ts -------------------------------------------------------------------------------- /src/crowller/crowller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/src/crowller/crowller.ts -------------------------------------------------------------------------------- /src/crowller/index.ts: -------------------------------------------------------------------------------- 1 | export * from './crowller' 2 | -------------------------------------------------------------------------------- /src/decorator/controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/src/decorator/controller.ts -------------------------------------------------------------------------------- /src/decorator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/src/decorator/index.ts -------------------------------------------------------------------------------- /src/decorator/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/src/decorator/request.ts -------------------------------------------------------------------------------- /src/decorator/use.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/src/decorator/use.ts -------------------------------------------------------------------------------- /src/interface/analyze.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/src/interface/analyze.ts -------------------------------------------------------------------------------- /src/interface/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/src/interface/index.ts -------------------------------------------------------------------------------- /src/interface/result.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/src/interface/result.ts -------------------------------------------------------------------------------- /src/middleware/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/src/middleware/index.ts -------------------------------------------------------------------------------- /src/routers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/src/routers/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TTiip/koa-utils/HEAD/tsconfig.json --------------------------------------------------------------------------------