query-extractor
v1.0.1
Published
A simple module to extract query parameters from URL
Downloads
2
Maintainers
Readme
query-extractor
A simple module to get query parameters from a url
Usage
Require
var query = require('query-extractor');
Get all query parameters and their values in an object
query.getAll("https://awesomewebsite.com?name=canon&place=India");
Output
{ name: 'canon', place: 'India' }
Get the value for a specific key in query string
query.get("https://awesomewebsite.com?name=canon&place=India", "name");
Output
canon
Note:
The URL in function is optional, If you want it to use the URL of current page than pass
null
instead and it'll use URL of current pageIt uses window.location.href to get URL of current page.
If the specified key doesn't exists in query string than it returns
null
.If the specified key doesn't has any value than it returns ```''````.