Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
ajax-request
Advanced tools
var request = require('ajax-request');
npm install ajax-request --save
mocha
options
requiredoptions.url
requiredoptions.method
[options.method=GET]options.data
GET
, it's appended to query string of the URL, or it's sended to remote of body.options.headers
options.encoding
options.isBuffer
[options.isBuffer=false]options.json
[options.json=false]callback
requiredrequest('url', function(err, res, body) {});
request({
url: '',
method: 'GET',
data: {
query1: 'value1'
}
}, function(err, res, body) {
});
The API same as request
request.post({
url: 'url',
data: {},
headers: {}
});
options
required
options.url
{string} requiredoptions.ignore
{boolean} [options.ignore=false]options.rootPath
{string} [options.rootPath='']options.destPath
{string|function}callback
requiredrequest.download({
url: 'path/index.png',
rootPath: ''
}, function(err, res, body, destpath) {});
request.download({
url: 'path/index.png',
destPath: function(filename) {
return filename;
}
}, function(err, res, body, destpath) { });
Deprecated, move to base64
FAQs
Http request for nodejs, and it also support file download
The npm package ajax-request receives a total of 16,039 weekly downloads. As such, ajax-request popularity was classified as popular.
We found that ajax-request 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.