
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
Do you want great profits? Make a blog! But how?? Magic.
var redis = require('redis').createClient();
var blog = require('derp');
blog.redis = redis;
There's your blog. Write a post dufas.
blog.save({
id: 'best-post-ever',
title: "my life",
markdown: "makin' *mad stacks* bitches. markdown up in hurr",
tags: ["gangsta life", "chillin"],
published: new Date()
}, function (error) { ... });
Wtf do we do with that id?
blog.get('best-post-ever', function (error, post) {
// lol, post.content is HTML, not markdown
// how great is that
put_post_on_the_browser_window(post);
});
All done! Oh snap, forgot to make a home page.
blog.page({page: 1, perPage: 10}, function (error, posts) {
put_all_the_posts_on_the_browser_window(posts);
});
Regret that post? No problem.
blog.remove('best-post-ever', function (error) { ... });
BTW, your blog should maximize SEO:
blog.page({page: 1, perPage: 10, tag: "gangsta life"}, function (error, posts) {
put_the_titles_on_the_sidebar_somewhere(posts);
});
blog.tags(function (error, tags) {
// tags[0].tag
// tags[0].count
});
Feeling special yet? Go make a blog you idiot!
FAQs
Blog for win
We found that derp 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.