
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
promisify-express
Advanced tools
A lightweight wrapper for Express 4's Router that allows middleware to return promises
This package allows you to wrap express so that you can use promises as handlers, and any promise error will be neatly passed to express error handlers.
Install the module with: npm install promisify-express --save
.
Middleware and route handlers can simply return a promise. If the promise is rejected, promisify-express
will
call next
with the reason. This functionality removes the need to explicitly define a rejection handler.
// Without promisify-express
const express = require('express')
const app = express()
app.get('/url', async (req, res, next) => {
try {
throw new Error('something went wrong')
} catch (e) {
next(e)
}
})
app.use((err, req, res, next) => {
console.error(err)
res.status(500).send(err.message)
})
// With promisify-express
const express = require('express')
const promisifyExpress = require('promisify-express')
const app = express()
promisifyExpress(app)
app.get('/url', async (req, res, next) => {
throw new Error('something went wrong')
})
app.use((err, req, res, next) => {
console.error(err)
res.status(500).send(err.message)
})
FAQs
A lightweight wrapper for Express 4's Router that allows middleware to return promises
The npm package promisify-express receives a total of 0 weekly downloads. As such, promisify-express popularity was classified as not popular.
We found that promisify-express 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
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.