
Security News
Inside Lodash’s Security Reset and Maintenance Reboot
Lodash 4.17.23 marks a security reset, with maintainers rebuilding governance and infrastructure to support long-term, sustainable maintenance.
reverse-client
Advanced tools
An auto-generated HTTP(S) API client for applications built using the `reverse` router
An auto-generated HTTP(S) API client for applications built using the
reverse router.
npm install reverse-client --save
const http = require('http')
const reverse = require('reverse')
const reverseClient = require('reverse-client')
const router = reverse`
GET /bar getBar
GET /foo/${reverse.param('id', String)} getFoo
`({
getBar: () => console.log('getBar'),
getFoo: (id) => console.log('getFoo', id),
})
const server = http.createServer((req, res) => {
console.log(req.method, req.url)
const match = router.match(req.method, req.url)
match.controller[match.name](match.context)
res.writeHead(200)
res.end()
})
server.listen(7676)
const client = reverseClient(router, 'http://127.0.0.1:7676')
client.getBar()
client.getFoo(10)
FAQs
An auto-generated HTTP(S) API client for applications built using the `reverse` router
We found that reverse-client 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
Lodash 4.17.23 marks a security reset, with maintainers rebuilding governance and infrastructure to support long-term, sustainable maintenance.

Security News
n8n led JavaScript Rising Stars 2025 by a wide margin, with workflow platforms seeing the largest growth across categories.

Security News
The U.S. government is rolling back software supply chain mandates, shifting from mandatory SBOMs and attestations to a risk-based approach.