# express-template **Repository Path**: onlymry/express-template ## Basic Information - **Project Name**: express-template - **Description**: express带接口文档的模板,写注释自动生成接口文档 - **Primary Language**: JavaScript - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-12-18 - **Last Updated**: 2022-05-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ### express-template #### demo ```js /** * @start * @desc "abc接口" * @method "get" * @url "/abc" * @params * @object * @demo * { * a:"", * b:"" * } * @return * @object * @demo * { * a:"", * b:"" * } * @end */ router.get('/abc', function (req, res, next) { getMessage(res, { code: 200, message: "8888" }) }); ```