1.0.4 ā€¢ Published 4 years ago

koa-mock-restful v1.0.4

Weekly downloads
65
License
MIT
Repository
github
Last release
4 years ago

koa-mock-restful

Build Status

koa-mock-restful is a koa middleware that creates mocks for REST APIs. It will be helpful when you try to test your application without the actual REST API server.

Features:

šŸ”„ Built in support for hot Mocker file replacement.
šŸš€ Quickly and easily configure the API via JSON.

Installation

npm install koa-mock-restful --save-dev

Usage

koa-mock-restful dev support mock, configured in mocker.js.

const mockMap = {
  'GET /api/user': {
      username: 'admin',
      sex: 5,
    },
    'GET /repos/hello': (ctx, next) => {
      ctx.body = {
        text: 'this is from mock server',
      };
    },
    'GET /api/userinfo/:id': (ctx, next) => {
      ctx.body = {
        id: ctx.params.id,
        username: 'kenny',
      };
    },
    'GET /api/user/list/:id/:type': (ctx, next) => {
      ctx.body = {
        id: ctx.params.id,
        type: ctx.params.type,
      };
    },
  
    'POST /api/login/account': (ctx, next) => {
      const {password, username} = ctx.request.body;
      if (password === '888888' && username === 'admin') {
        ctx.body =  {
          status: 'ok',
          code: 0,
          token: 'sdfsdfsdfdsf',
          data: {
            id: 1,
            username: 'kenny',
            sex: 6,
          },
        };
      } else {
        ctx.body = {
          status: 'error',
          code: 403,
        };
      }
    },
    'DELETE /api/user/:id': (ctx, next) => {
      ctx.body = {status: 'ok', message: 'åˆ é™¤ęˆåŠŸļ¼', id: ctx.params.id};
    },
}
module.exports = mockMap;

apiMocker

apiMocker({entry:'./mocker.js',debug:true})

Using with koa

const path = require('path');
const koa = require('koa');
+ const apiMocker = require('koa-mock-restful');

const app = koa();

+ app.use(apiMocker({entry:'./mocker/index.js',debug:true});
app.listen(8080);
1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago