
Security News
/Research
Fake Corepack Site Distributes Infostealer and Proxyware to Developers
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.
on-rendered
Advanced tools
Emit events when express start render and finish render.
This is a Node.js module available through the
npm registry. Installation is done using the
npm install command:
$ npm install on-rendered -S
var onRender = require('on-rendered')
This will add the event render to fire when template are rendered. And a
event beforeRender add to template is ready to render.
var bodyParser = require('body-parser')
var cookieParser = require('cookie-parser')
var express = require('express')
var onRender = require('on-rendered')
// example of using this top-level; note the use of haltOnTimedout
// after every middleware; it will stop the request flow on a timeout
var app = express()
app.use(onRender())
app.use(bodyParser())
app.use(cookieParser())
app.get('/path', function(req, res) {
res.on('render', function() {
console.log('after render and before send')
});
res.on('beforeRender', function() {
console.log('before render');
});
res.render('foo.html');
})
app.listen(3000)
FAQs
emit events when express start render and finish render.
We found that on-rendered 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
/Research
A fake corepack.org site is impersonating the Node.js tool and delivers an infostealer and proxyware to developers who download it.

Research
/Security News
A large-scale campaign abused GitHub Actions in compromised repositories to exploit CVE-2026-41940 in cPanel and WHM and steal server credentials.

Security News
Five frontier LLMs generated the same nonexistent package names, leaving 53 available for potential slopsquatting across PyPI and npm.