
Research
Security News
Malicious npm Packages Target BSC and Ethereum to Drain Crypto Wallets
Socket uncovered four malicious npm packages that exfiltrate up to 85% of a victim’s Ethereum or BSC wallet using obfuscated JavaScript.
trooba-http-api
Advanced tools
Provides a generic transport API to http/ajax/xhr trooba transports.
CONTRIBUTING.md
and check out our bite-sized and help-wanted issuesnpm install trooba-http-api --save
var Wreck = require('wreck');
var _ = require('lodash');
var httpfy = require('trooba-http-api');
module.exports = function transport(pipe, config) {
pipe.on('request', function (request) {
request = _.merge(request || {}, config);
Wreck.request(request, function onResponse(err, response) {
if (err) {
pipe.throw(err);
return;
}
pipe.respond(response);
});
});
// inject api
pipe.set('client:default', httpfy);
};
var Trooba = require('trooba');
var client = new Trooba()
.use(function someHandler() {})
.use(function someHandler() {})
.use(function someHandler() {})
.use('trooba-http-api')
.build()
.create('client:default'); // since it injects default at ''client:default''
client.delete('path/to/resource').end(console.log);
FAQs
generic API for trooba http and ajax transports
The npm package trooba-http-api receives a total of 0 weekly downloads. As such, trooba-http-api popularity was classified as not popular.
We found that trooba-http-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Research
Security News
Socket uncovered four malicious npm packages that exfiltrate up to 85% of a victim’s Ethereum or BSC wallet using obfuscated JavaScript.
Security News
TC39 advances 9 JavaScript proposals, including Array.fromAsync, Error.isError, and Explicit Resource Management, which are now headed into the ECMAScript spec.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.