Gathering detailed insights and metrics for easy-soap-request
Gathering detailed insights and metrics for easy-soap-request
Gathering detailed insights and metrics for easy-soap-request
Gathering detailed insights and metrics for easy-soap-request
Small Node.js library to make SOAP requests easier
npm install easy-soap-request
Typescript
Module System
Node Version
NPM Version
94.5
Supply Chain
99.5
Quality
75.6
Maintenance
100
Vulnerability
100
License
JavaScript (100%)
Total Downloads
6,363,517
Last Day
529
Last Week
19,386
Last Month
86,887
Last Year
1,291,363
MIT License
165 Stars
136 Commits
45 Forks
7 Watchers
1 Branches
10 Contributors
Updated on Jun 23, 2025
Minified
Minified + Gzipped
Latest Version
5.6.1
Package Id
easy-soap-request@5.6.1
Unpacked Size
100.01 kB
Size
27.62 kB
File Count
7
NPM Version
10.2.3
Node Version
18.19.0
Published on
Jan 31, 2024
Cumulative downloads
Total Downloads
Last Day
-6.9%
529
Compared to previous day
Last Week
-5.4%
19,386
Compared to previous week
Last Month
-5.1%
86,887
Compared to previous month
Last Year
-17.1%
1,291,363
Compared to previous year
A small library to make SOAP requests easier via Node.js, Deno, and your browser
1npm install easy-soap-request
1const soapRequest = require('easy-soap-request'); 2const fs = require('fs'); 3 4// example data 5const url = 'https://graphical.weather.gov/xml/SOAP_server/ndfdXMLserver.php'; 6const sampleHeaders = { 7 'user-agent': 'sampleTest', 8 'Content-Type': 'text/xml;charset=UTF-8', 9 'soapAction': 'https://graphical.weather.gov/xml/DWMLgen/wsdl/ndfdXML.wsdl#LatLonListZipCode', 10}; 11const xml = fs.readFileSync('test/zip-code-envelope.xml', 'utf-8'); 12 13// usage of module 14(async () => { 15 const { response } = await soapRequest({ url: url, headers: sampleHeaders, xml: xml, timeout: 1000 }); // Optional timeout parameter(milliseconds) 16 const { headers, body, statusCode } = response; 17 console.log(headers); 18 console.log(body); 19 console.log(statusCode); 20})();
1import soapRequest from 'https://deno.land/x/easy_soap_request/index.d.js'; 2 3// example data 4const url = 'https://graphical.weather.gov/xml/SOAP_server/ndfdXMLserver.php'; 5const sampleHeaders = { 6 'user-agent': 'sampleTest', 7 'Content-Type': 'text/xml;charset=UTF-8', 8 'soapAction': 'https://graphical.weather.gov/xml/DWMLgen/wsdl/ndfdXML.wsdl#LatLonListZipCode', 9}; 10 11// usage of module 12(async () => { 13 const xml = await Deno.readFile('test/zip-code-envelope.xml'); 14 const { response } = await soapRequest({ url: url, headers: sampleHeaders, xml: xml }); 15 const { headers, body, statusCode } = response; 16 console.log(headers); 17 console.log(body); 18 console.log(statusCode); 19})();
Note: CORS policies apply
1<html> 2<script src="https://cdn.jsdelivr.net/npm/easy-soap-request/dist/easy-soap-request.js"></script> 3<script> 4 const url = 'https://my-soap-server'; 5 const sampleHeaders = { 6 'Content-Type': 'text/xml;charset=UTF-8', 7 SOAPAction: 'https://my-soap-action/something', 8 }; 9 const xml = `<soapenv:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"> 10 <soapenv:Header/> 11 <soapenv:Body>Some Data</soapenv:Body> 12 </soapenv:Envelope>`; 13 async function makeRequest() { 14 const { response } = await soapRequest({ url: url, headers: sampleHeaders, xml: xml, timeout: 1000 }); 15 const { headers, body, statusCode } = response; 16 console.log(headers); 17 console.log(body); 18 console.log(statusCode); 19 document.body.innerHTML = body; 20 }; 21 makeRequest(); 22</script> 23<body></body> 24</html>
No vulnerabilities found.
Reason
no dangerous workflow patterns detected
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 2
Details
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
Found 2/24 approved changesets -- score normalized to 0
Reason
detected GitHub workflow tokens with excessive permissions
Details
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
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
28 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-06-30
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