
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
querystring-es3
Advanced tools
The querystring-es3 npm package is a module that provides utilities for parsing and formatting URL query strings. It is a version of the querystring module that is compatible with older JavaScript engines that do not fully support ES5.
Parsing query strings
This feature allows you to parse a query string into an object, where each key-value pair in the query string becomes a key-value pair in the object.
var querystring = require('querystring-es3');
var parsed = querystring.parse('foo=bar&abc=xyz&abc=123');
Stringifying objects
This feature allows you to serialize an object into a query string, with support for nested objects and arrays.
var querystring = require('querystring-es3');
var stringified = querystring.stringify({ foo: 'bar', baz: ['qux', 'quux'], corge: '' });
Escaping and unescaping
This feature provides methods for percent-encoding and decoding strings, which is useful for sanitizing input and output for URL query strings.
var querystring = require('querystring-es3');
var escaped = querystring.escape('foo@bar.com');
var unescaped = querystring.unescape('foo%40bar.com');
The 'qs' package is a query string parser with nesting support. It is more feature-rich than querystring-es3, offering the ability to parse complex nested query strings.
The 'query-string' package is designed for modern browsers and environments. It provides parsing and stringifying of query strings and is known for its simplicity and tree-shaking support.
The 'url-search-params' package is a polyfill for the URLSearchParams API, which is a modern web API for working with query strings. It offers a different API than querystring-es3 and is built-in in modern browsers.
FAQs
Node's querystring module for all engines. (ES3 compat fork)
The npm package querystring-es3 receives a total of 10,110,806 weekly downloads. As such, querystring-es3 popularity was classified as popular.
We found that querystring-es3 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.