Gathering detailed insights and metrics for postman-url-encoder
Gathering detailed insights and metrics for postman-url-encoder
Gathering detailed insights and metrics for postman-url-encoder
Gathering detailed insights and metrics for postman-url-encoder
form-data-encoder
Encode FormData content into the multipart/form-data format
postman-collection
Enables developers to use a unified Postman Collection format Object across projects
postman-collection-transformer
Perform rapid conversation and validation of JSON structure between Postman Collection Format v1 and v2
postman-runtime
Underlying library of executing Postman Collections
Implements URL encoding according to the WHATWG specification
npm install postman-url-encoder
Module System
Min. Node Version
Typescript Support
Node Version
NPM Version
18 Stars
237 Commits
14 Forks
20 Watching
28 Branches
40 Contributors
Updated on 28 Oct 2024
JavaScript (100%)
Cumulative downloads
Total Downloads
Last day
-3.4%
166,128
Compared to previous day
Last week
-0.5%
940,670
Compared to previous week
Last month
8%
4,235,717
Compared to previous month
Last year
15.4%
47,559,006
Compared to previous year
1
28
Postman URL Encoder is a NodeJS module that provides various URL encoding related APIs. This module is created to implement the WHATWG URL specification to remove dependency on Node's URL APIs across Postman systems. These APIs are useful to encode different parts (like hostname, path, query) of URL and convert PostmanUrl object into Node's Url like object.
Postman URL Encoder can be installed using NPM or directly from the git repository within your NodeJS projects. If
installing from NPM, the following command installs the module and saves in your package.json
1> npm install postman-url-encoder --save
Following example snippet shows how to convert PostmanUrl object into Node's Url like object.
1var PostmanUrl = require('postman-collection').Url, 2 pmEncoder = require('postman-url-encoder'), 3 myUrl; 4 5// Create PostmanUrl object 6myUrl = new PostmanUrl('http://example.com/p/a/t/h?q1=v1'); 7 8// convert PostmanUrl object to Node's Url like object 9myUrl = pmEncoder.toNodeUrl(myUrl)); 10// { 11// protocol: 'http:', 12// slashes: true, 13// auth: null, 14// host: 'example.com', 15// port: null, 16// hostname: 'example.com', 17// hash: null, 18// search: '?q1=v1', 19// query: 'q1=v1', 20// pathname: '/p/a/t/h', 21// path: '/p/a/t/h?q1=v1', 22// href: 'http://example.com/p/a/t/h?q1=v1' 23// }
To know more about provided APIs, head over to Postman URL Encoder Docs.
No vulnerabilities found.
Reason
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
SAST tool detected but not run on all commits
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
Found 0/19 approved changesets -- score normalized to 0
Reason
dependency not pinned by hash detected -- score normalized to 0
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
49 existing vulnerabilities detected
Details
Score
Last Scanned on 2024-11-18
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