koa-swagger-mock
v2.0.1
Published
It's a middleware for swagger-mock!
Downloads
232
Maintainers
Readme
koa-swagger-mock
Introduce
It's a middleware for swagger-mock!
preview this project, do this!
git clone https://github.com/ShanaMaid/koa-swagger-mock
npm install
npm run test
url: localhost:3000/api/pet/1212121212
Usage
npm install koa-swagger-mock -save
Example
const Koa = require('koa');
const app = new Koa();
const KoaSwaggerMock = require('../lib/koa-swagger-mock');
const path = require('path');
const fs = require('fs');
const swagger = JSON.parse(
fs.readFileSync(path.resolve(__dirname, '../json/example.json'), {encoding: 'utf8'})
);
const koaSwagMock = KoaSwaggerMock({
swagger,
prefix: '/api'
});
app.use(koaSwagMock.routes());
app.listen(3000);
this is mock resp!
http://localhost:3000/api/pet/findByStatus
API
KoaSwaggerMock({...params})
swagger
- (Object) - (required) - api can be one of the following.- A Swagger JSON Object.
prefix
- (String) - (optional) - url prefix.- default is
''
- default is