
Security News
Security Community Slams MIT-linked Report Claiming AI Powers 80% of Ransomware
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.
@eccenca/superagent
Advanced tools
Extended version of superagent.js, pimped with RX, better Link header parsing and HTTP Problem support
Extended version of Superagent.js to use within eLDS framework
Includes Superagent.js and Superagent-rx packages. So, all you need to use it is import and call with your ajax requests:
import request from 'ecc-superagent';
// ...
// parse results
request
    .get(requestUrl)
    .observe() // this returns Rx.Observable
    .subscribe(function(res) {
        // use res
    });
// use results ...
Futhermore it is possible to register/unregister global superagent plugins to manipulate each request. For Example:
import request from 'ecc-superagent';
// Register a plugin which sets a header on each request
request.useForEachRequest('setHeaderPlugin', (request) => {
    request.set('X-Example-Header', 'FOO');
    return request;
});
// The following request will have the X-Example-Header set
request
    .get('http://example.org')
    .observe() // this returns Rx.Observable
    .subscribe(function(res) {
        // use res
    });
// Disable the plugin
request.useForEachRequest('setHeaderPlugin', false);
FAQs
Extended version of superagent.js, pimped with RX, better Link header parsing and HTTP Problem support
The npm package @eccenca/superagent receives a total of 35 weekly downloads. As such, @eccenca/superagent popularity was classified as not popular.
We found that @eccenca/superagent demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers 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
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.

Research
/Security News
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.