
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
macropress-router
Advanced tools
Express Router inspired by ZEIT's Micro controllers style.
# Using npm
$ npm install macropress-router
# Or using yarn
$ yarn add macropress-router
If you're using express to build a JSON API while using async/await
syntax, then dealing with express callback style will force you to add some boilerplate code in each controller.
const myController = async (req, res, next) => {
try {
data = await some_code()
return res.status(200).json(data)
} catch (err) {
return next(err)
}
}
expressRouter.get('/', myController)
macropress-router
do?It's a bit opinionated implementation inspired by zeit's micro that allows you to get rid of the boilerplate code. So you can do the same functionality with less code.
const myController = async (req, res) => {
data = await some_code()
return data
}
macropressRouter.get('/', myController)
Macropress overrides express router methods to automatically wrap async controllers with the boilerplate code so you don't have to do it manually
res.json
on the return with a default status code 200undefined
or null
, it will respond with statuc code 204res.send
or next
, it will respect the controller and do nothing[
'checkout', 'copy', 'delete', 'get', 'head', 'lock', 'merge', 'mkactivity',
'mkcol', 'move', 'm-search', 'notify', 'options', 'patch', 'post', 'purge',
'put', 'report', 'search', 'subscribe', 'trace', 'unlock', 'unsubscribe'
]
If for some reason you need to use the original methods they're accessible using ${methodName}Sync
(ex: getSync
)
const MacropressRouter = require('macropress-router')
const express = require('express')
const app = express()
const router = new MacropressRouter()
const getData = async () => {
return { hello: 'world' }
}
const myController = async (req, res) => {
const data = await getData()
return data
}
router.get('/', myController)
app.use(router)
app.listen()
FAQs
Express Async Router - Zeit's Micro Style
The npm package macropress-router receives a total of 11 weekly downloads. As such, macropress-router popularity was classified as not popular.
We found that macropress-router 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.