Gathering detailed insights and metrics for @aguezz/qs-parse
Gathering detailed insights and metrics for @aguezz/qs-parse
Gathering detailed insights and metrics for @aguezz/qs-parse
Gathering detailed insights and metrics for @aguezz/qs-parse
npm install @aguezz/qs-parse
Typescript
Module System
Node Version
NPM Version
JavaScript (100%)
Total Downloads
1,756
Last Day
1
Last Week
7
Last Month
27
Last Year
560
MIT License
1 Stars
13 Commits
1 Branches
1 Contributors
Updated on Jan 28, 2023
Minified
Minified + Gzipped
Latest Version
2.0.0
Package Id
@aguezz/qs-parse@2.0.0
Unpacked Size
3.85 kB
Size
1.92 kB
File Count
5
NPM Version
6.13.4
Node Version
12.16.1
Cumulative downloads
Total Downloads
Last Day
-75%
1
Compared to previous day
Last Week
0%
7
Compared to previous week
Last Month
-67.9%
27
Compared to previous month
Last Year
135.3%
560
Compared to previous year
No dependencies detected.
QS-Parse is a simple javascript library that can convert data objects into queries on URLs. QS-Parse can also convert queries on URLs into objects as well.
1npm i @aguezz/qs-parse 2# OR 3yarn add @aguezz/qs-parse
1const qs = require('@aguezz/qs-parse'); 2 3// Example data 4const data = { 5 first_name: 'Foo', 6 last_name: 'Bar', 7 full_name: 'Foo Bar', 8}; 9 10qs.encode(data); 11// ?first_name=Foo&last_name=Bar&full_name=Foo%20Bar 12 13qs.encode('http://http://yourwebsite.com', data); 14// http://yourwebsite.com?first_name=Foo&last_name=Bar&full_name=Foo%20Bar 15 16qs.decode('first_name=Foo&last_name=Bar&full_name=Foo%20Bar') 17qs.decode('http://yourwebsite.com?first_name=Foo&last_name=Bar&full_name=Foo%20Bar') 18// Object { first_name: 'Foo', last_name: 'Bar', full_name: 'Foo Bar' } 19
Unless stated elsewhere, file headers or otherwise, the license as stated in the LICENSE file.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
0 existing vulnerabilities detected
Reason
license file detected
Details
Reason
no SAST tool detected
Details
Reason
project is archived
Details
Reason
Found 0/13 approved changesets -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-05-05
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More