detectiveHLH / koa2-response

A middleware which can let you send your response easier

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

koa2-response

A middleware which can let you send your response easier in Koa.

Install

npm install koa2-response

Usage

const koa = require('koa');
const app = new koa();
const router = require('koa-router')();
const response = require('koa2-response');

// Defining error code map
const code = {
  UNKNOWN_ERROR: [1, 'Sorry, you seem to have encountered some unknown errors.']
};

// Use this middleware
app.use(response);

router
  .get('/', (ctx, next) => {
    // Instead of "ctx.body = {};"
    ctx.success({
      name: 'test'
    })
  })
  .get('/error_test', (ctx, next) => {
     ctx.error(code.UNKNOWN_ERROR);
  })
  .get('/throw', (ctx, next) => {
    ctx.throw(500, 'Internal Server Error');
  });

app.use(router.routes());
app.use(router.allowedMethods());

app.listen(3000);

console.log(`Server is running on port 3000`);

Licences

MIT

About

A middleware which can let you send your response easier

License:MIT License


Languages

Language:JavaScript 100.0%