Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Wrapping object generator properties into co
var Q = require('q');
var fs = require('fs');
var co = require('co');
var genify = require('genify');
// genify is taking care of wrapping all object generator properties into co function,
// and returning generator result as resolved promise,
// or in case of error -> rejected promise with error object
var object = genify({
readFile: function * (file) {
return yield Q.nfcall(fs.readFile, file);
}
});
co(function * () {
console.log(yield object.readFile('./somefile.txt'));
})();
MIT
FAQs
Convert passed javascript object to generator
We found that genify 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.