Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
lightning-request-net
Advanced tools
⚡ Lightweight Node.js HTTP client based on net.
npm i lightning-request-net --save
First, require the library.
const HttpRequestClient = require('lightning-request-net');
const client = new HttpRequestClient({
host: 'www.example.com',
port: 80,
});
Then let's make a request in an async function.
(async function() {
try {
const result = await client.request({
method: 'POST',
path: '/foo',
});
console.log(result.statusCode); // response status code
console.log(result.data); // response data
} catch (error) {
console.log(error);
}
})();
These are the available config options for making requests. Only the path is required. Requests will default to GET if method is not specified.
{
// `method` is the request method to be used when making the request
method: 'get', // default
// `path` is the server URL that will be used for the request
path: '/foo',
// `headers` are custom headers to be sent
headers: {'Content-Type': 'application/json'},
// `data` is the data to be sent as the request body
data: {
foo: 'bar'
},
// `timeout` specifies the number of milliseconds before the request times out.
// If the request takes longer than `timeout`, the request will be aborted.
timeout: 3000, // default is `3000` milliseconds
// `responseType` indicates the type of data that the server will respond with
// options are: 'json', 'text'
responseType: 'json', // default
allowBigNumberInJSON: false, // default false
}
The response for a request contains the following information.
{
// `statusCode` is the HTTP status code from the server response
statusCode: 200,
// `statusMessage` is the HTTP status message from the server response
statusMessage: 'OK',
// `headers` the headers that the server responded with All header names are lower cased
headers: {},
// `data` is the response data that was provided by the server
data: {}
}
FAQs
Lightweight Node.js HTTP client based on net.
The npm package lightning-request-net receives a total of 24 weekly downloads. As such, lightning-request-net popularity was classified as not popular.
We found that lightning-request-net 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
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.