url-parameter-parser

1.0.2 • Public • Published

Simple and lightweight url decoder.

Just help extract key-value from GET URL string. Result will be object key-value.

Installation

$ npm install url-parameter-parser

Getting started

const parser = require('url-parameter-parser');

const testString = '/socket.io/?uid=3&EIO=3&transport=polling&t=Mq-166I';

const res = parser(testString);

returns: 
  {
    uid: 3,
    EIO: 3,
    transport: 'polling',
    t:'Mq-166I',
  }

Package Sidebar

Install

npm i url-parameter-parser

Weekly Downloads

124

Version

1.0.2

License

MIT

Unpacked Size

2.91 kB

Total Files

5

Last publish

Collaborators

  • kurakste