
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
complex-query-builder
Advanced tools
http_build_query of the JavaScript World with full typeScript support
🔥 http_build_query of JavaScript 🔥
complex-query-builder can be used to mimic the behavior of http_build_query available in PHP. It's useful for building complex Query for WordPress and Other Rest API where data type of array and deeply nested arrays are required.
This library uses querystring package for escape characters.
Install with your favorite package manager.
Using Yarn:
yarn add complex-query-builder
Using NPM:
npm i complex-query-builder
Now you can import specific functions or the factory function from the module using commonjs or esm statements.
import complexQueryBuilder, { QueryObject } from 'complex-query-builder';
const complexQueryBuilder = require('complex-query-builder');
Add a script tag with the umd bundle from unpkg or release page.
<script src="https://unpkg.com/complex-query-builder"></script>
Now you will have CQB global in your hand with all functions to use!
<script>
const complexQueryBuilder = CQB.complexQueryBuilder;
</script>
import complexQueryBuilder, { QueryObject } from 'complex-query-builder';
const query1: QueryObject = {
page: 10,
theme: 'dark',
features: ['view', 'edit', 'notify'],
highContrast: false,
date: {
day: 15,
month: 12,
year: 2020,
},
};
console.log(complexQueryBuilder(query1));
// output> page=10&theme=dark&features[0]=view&features[1]=edit&features[2]=notify&highContrast=false&date[day]=15&date[month]=12&date[year]=2020
// with parent
console.log(complexQueryBuilder(query1, 'dashboard'));
// output> dashboard[page]=10&dashboard[theme]=dark&dashboard[features][0]=view&dashboard[features][1]=edit&dashboard[features][2]=notify&dashboard[highContrast]=false&dashboard[date][day]=15&dashboard[date][month]=12&dashboard[date][year]=2020
type Primitives = string | number | boolean;
type PrimitivesArray = (Primitives | QueryObject)[];
interface QueryObject {
[key: string]: Primitives | PrimitivesArray | QueryObject;
}
const complexQueryBuilder: (
obj: QueryObject | PrimitivesArray,
parent?: string | undefined
) => string;
This package is licensed under the MIT License.
Any kind of contribution is welcome. Thanks!
FAQs
http_build_query of the JavaScript World with full typeScript support
We found that complex-query-builder 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.