From d9a9ea86dfc108ae406f0b31476572cfff50be04 Mon Sep 17 00:00:00 2001 From: Antony David Date: Wed, 7 Aug 2024 21:03:00 +0200 Subject: [PATCH] fix: `qs` inconsistent documentation (#143) --- docs/modules/qs.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/docs/modules/qs.md b/docs/modules/qs.md index 1d4497a..53b8f21 100644 --- a/docs/modules/qs.md +++ b/docs/modules/qs.md @@ -12,10 +12,19 @@ [fast-querystring](https://www.npmjs.com/package/fast-querystring) can be used when you need arrays but not nesting. +[Project Page](https://github.com/anonrig/fast-querystring) +[npm](https://www.npmjs.com/package/fast-querystring) + ## picoquery [picoquery](https://www.npmjs.com/package/picoquery) can be used when you need nesting and arrays. +- `v2.x` and above are ESM only. +- `v1.x` is compatible with CommonJS and will be maintained with non-breaking changes. + +[Project Page](https://github.com/43081j/picoquery) +[npm](https://www.npmjs.com/package/picoquery) + ## qs-esm [qs-esm](https://www.npmjs.com/package/qs-esm) is an esm-only fork of `qs` with the following core differences: @@ -23,6 +32,9 @@ - No polyfills for legacy Node versions, making this package dependency-free and reducing bundle-size. - Includes TypeScript types, eliminating the need to install a separate @types/ package. +[Project Page](https://github.com/payloadcms/qs-esm) +[npm](https://www.npmjs.com/package/qs-esm) + ## neoqs [neoqs](https://www.npmjs.com/package/neoqs) is a fork of `qs` with the following core differences: @@ -31,3 +43,6 @@ - Includes TypeScript types, eliminating the need to install a separate @types/ package. - ESM and CommonJS builds are provided. - Legacy mode supporting ES5. + +[Project Page](https://github.com/puruvj/neoqs) +[npm](https://www.npmjs.com/package/neoqs)