Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@idan-loo/middleware
Advanced tools
Create your own middlewares to divide a large logic into serveral wares
Create your own middlewares to divide a large logic into serveral wares.
It is inspired by the middleware system of Koa
# with npm
npm install --save @idan-loo/middleware
# with yarn
yarn add @idan-loo/middleware
import { compose } from '@idan-loo/middleware'
const mw1 = async (ctx, next) => {
ctx.name = 'mw1'
await next()
}
const mw2 = async (ctx, next) => {
ctx.name = 'mw2'
await next()
}
const mw3 = async (ctx, next) => {
ctx.name = 'mw3'
await next()
}
const exec = compose(
mw1,
mw2,
mw3
)
await exec({ name: 'test' })
async
keyword in front of the function declation, or just return next()
.import { Next } from '@idan-loo/middleware'
type Context = {
name: string,
}
const mw1 = async (ctx: Context, next: Next) => {
ctx.name = 'mw1'
return next()
}
const mw2 = async (ctx: Context, next: Next) => {
ctx.name = await anAsyncAction()
await next()
}
const mw3 = async (ctx: Context, next: Next) => {
await next()
ctx.name = 'after next'
}
next()
manually.import { compose } from '@idan-loo/middleware'
const mw1 = async (ctx: Context, next: Next) => {
ctx.name = 'mw1'
return next()
}
const mw2 = async (ctx: Context) => {
ctx.name = 'mw2'
}
const mw3 = async (ctx: Context, next: Next) => {
ctx.name = 'mw3'
return next()
}
// mw3 won't be executed because mw2 doesn't call the next method
const exec = compose(
mw1,
mw2,
mw3
)
exec({ name: 'test' })
compose
returns a middleware as well, so you can combine several middlewares by simply calling the compose
methodimport { compose } from '@idan-loo/middleware'
const checkAuthed = async (ctx, next) => {
// Go next only if the `ctx.isAuthed` is true
if (ctx.isAuthed) {
return next()
}
}
const getSomePrivacy = async (ctx, next) => {
/* Do some things */
return next()
}
/*
Combine the `getSomePrivacy` with the `checkAuthed`.
`checkAuthed` can be reused in everywhere you need.
*/
const getSomePrivacyIfAuthed = compose(
checkAuthed,
getSomePrivacy
)
const exec = compose(
getSomePrivacyIfAuthed,
handleThePrivacy
)
await exec(ctx)
FAQs
Create your own middlewares to divide a large logic into serveral wares
The npm package @idan-loo/middleware receives a total of 38 weekly downloads. As such, @idan-loo/middleware popularity was classified as not popular.
We found that @idan-loo/middleware 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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.