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.
npm install hn-api
var hn = require("hn-api");
hn.item(8422599, function (err, item) {
if (!err) {
console.log(item.by); // kevin
console.log(item.id); // 8422599
console.log(item.kids); // array
console.log(item.score); // 1677
console.log(item.time); // 1412703525
console.log(item.title); // Hacker News API
console.log(item.url); // http://blog.ycombinator.com/hacker-news-api
}
});
hn.user('pg', function (err, user) {
if (!err) {
console.log(user.created); // 1160418092
console.log(user.delay); // 2
console.log(user.id); // pg
console.log(user.karma); // 155040
console.log(user.submitted); // [ 7494555, ... ]
console.log(user.about); // Bug fixer.
}
});
hn.topStories(function(err, stories){
if (!err) {
console.log(stories); // array
}
});
hn.maxItem(function(err, max){
if(!err) {
console.log('max ', max); // id
}
})
Would love to get some more help on this project to make it awesome! Please contribute.
FAQs
Node wrapper for the Hacker News API
The npm package hn-api receives a total of 0 weekly downloads. As such, hn-api popularity was classified as not popular.
We found that hn-api 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.