koa-decoded-querystring

0.1.1 • Public • Published

Koa Decoded Querystring

To use

const koaDecodedQuerystring = require('koa-decoded-querystring');
// ...
app.use(koaDecodedQuerystring());

Very Simple

This module is 5 lines long

// call function to allow for future options as advised by koa best-practices
module.exports = () =>
  (ctx, next) => {
    ctx.decodedQuerystring = decodeURIComponent(ctx.querystring);
    return next();
  };

So when ctx.querystring contains "%20", decodedQuerystring will contain a space instead

I only created this module to isolate the testing and any further additions.

Readme

Keywords

Package Sidebar

Install

npm i koa-decoded-querystring

Weekly Downloads

4

Version

0.1.1

License

ISC

Last publish

Collaborators

  • olsonpm