Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.