SamVerschueren / bragg-decode-components

Decode bragg URI components

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Decode bragg URI components

License:MIT License


Languages

Language:JavaScript 100.0%