Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
needle-retries
Advanced tools
A module based on Needle and Retry to attempt a new request whenever it fails
Based on needle and retry, it allows to retry a fail attempt.
npm install needle-retries
Needle is a dependency of needle-retries so that by using this module, this should still work with the latest version of Needle.
var _needle = require('needle');
var needle = require('needle-retries')(_needle);
needle.get('http://stackoverflow.com/feeds', {needleRetry: {retries: 1, maxTimeout: 30*1000}}, function(err, response) {
console.log('response', response.body);
});
It's working with Promises too:
var _needle = require('needle');
var Promise = require('bluebird');
var needle = Promise.promisifyAll( require('needle-retries')(_needle) );
needle.requestAsync('get', 'http://stackoverflow.com/feeds', {needleRetry: {retries: 3}}).then(function(response) {
console.log('response', response.body);
}).catch(e => console.error('error', e));
Have a look at the respective doc pages for needle and retry for a list of available options.
It's not working with Streams, Pipes, ... and might never work. While a stream starts to send data at the beginning, a stream may fail also at any time, so that when it fails a full new request should be restarted. Obviously, this is not possible with this module.
Therefore, for Streams and Pipes, please use directly Needle (in the example above, you can access Needle through _needle
).
FAQs
A module based on Needle and Retry to attempt a new request whenever it fails
We found that needle-retries 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.