
Security News
New CVE Forecasting Tool Predicts 47,000 Disclosures in 2025
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
tiny-querystring
Advanced tools
Tiny parsing and formatting URL query strings for Node.js and browser
Tiny parsing and formatting URL query strings for Node.js and browser. (309B only)
npm install tiny-querystring
yarn add tiny-querystring
<script src="https://unpkg.com/tiny-querystring/dist/tiny-querystring.umd.js"></script>
Parses a URL query string (str) into a collection of key and value pairs.
import { parse } from 'tiny-querystring';
parse('foo=bar&abc=xyz&abc=123');
/* returns { foo: 'bar', abc: ['xyz', '123'] } */
Produces a URL query string from a given obj by iterating through the object's "own properties".
import { stringify } from 'tiny-querystring';
stringify({ foo: 'bar', baz: ['qux', 'quux'], corge: '' });
/* returns 'foo=bar&baz=qux&baz=quux&corge=' */
MIT
FAQs
Tiny parsing and formatting URL query strings for Node.js and browser
The npm package tiny-querystring receives a total of 493 weekly downloads. As such, tiny-querystring popularity was classified as not popular.
We found that tiny-querystring demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.
Security News
Browserslist-rs now uses static data to reduce binary size by over 1MB, improving memory use and performance for Rust-based frontend tools.
Research
Security News
Eight new malicious Firefox extensions impersonate games, steal OAuth tokens, hijack sessions, and exploit browser permissions to spy on users.