0.2.0 • Published 7 years ago

bragg-decode-components v0.2.0

Weekly downloads
33
License
MIT
Repository
github
Last release
7 years ago

bragg-decode-components Build Status

Decode bragg URI components

Install

$ npm install --save bragg-decode-components

Usage

const bragg = require('bragg');
const decodeComponents = require('bragg-decode-components');

const app = bragg();
app.use(decodeComponents());
app.use(ctx => {
    console.log(ctx.params);
    //=> {id: 'foo bar'}

    console.log(ctx.query);
    //=> {select: 'unicorn rainbow'}
});

exports.handler = app.listen();

API

decodeComponents()

Decodes the query and params object of the bragg context with decodeURIComponent.

Related

License

MIT © Sam Verschueren