
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.
Convenience middleware for sending JSON. Adds a .json() method to the res object which responds with a JSON body.
npm install sw-json
var json = require('sw-json');
// With express
app.use(json);
var NOTFOUND = JSON.stringify({error: 'NOT_FOUND'});
// or use as inline middleware
app.get('/example/page', json, function(req, res) {
if(req.query.n) {
res.json(NOTFOUND, 404); // Send a pre-serialized string
} else {
res.json({data: 'stuff'}); // or a JS object
}
});
res.json(body, [code])
FAQs
Convenience middleware for sending JSON
The npm package sw-json receives a total of 3 weekly downloads. As such, sw-json popularity was classified as not popular.
We found that sw-json 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.