![Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility](https://cdn.sanity.io/images/cgdhsj6q/production/97774ea8c88cc8f4bed2766c31994ebc38116948-1664x1366.png?w=400&fit=max&auto=format)
Security News
Deno 2.2 Improves Dependency Management and Expands Node.js Compatibility
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
diet-router
Advanced tools
Simple, full featured, nestable router for diet.js
Supports all of diet's HTTP methods (namely get, post, put, patch, delete, and trace)
const server = require('diet')
const Router = require('diet-router')
const app = server()
Router.extend(app)
const router = Router()
app.route('/router', router)
router.get('/subroute', function ($) {
$.end('response')
})
// accessible at /router/subroute
Add routes before or after calling route
. This lets you write your routers in separate files
// router1.js
const router = Router()
router.get('/subroute', function ($) {
$.end('response')
})
module.exports = router
// main.js
const router1 = require('./router1')
app.route('/route', router1)
If you don't want to extend diet's app object, you can skip calling Router.extend
and call the router directly, passing the app
object as the first argument
const router = Router()
router.get('/subroute', function ($) {
$.end('response')
})
router(app, '/route')
The router supports adding middleware to be run before each subroute. You can add it when calling Router or when calling app.route
const router = Router()
app.route('/path', function ($) {
// this is middleware
$.return()
}, barware, etcware, router)
Alternatively:
const router = Router(fooware, barware, etcware)
app.route('/path', router)
Note that the router is the last argument passed using either method
The router supports nesting a router within another router
const router1 = Router()
const router2 = Router()
app.route('/route', router1)
router1.route('/nested', router2)
router2.get('/subroute', function ($) {
$.end('response')
})
// accessible at /route/nested/subroute
Middleware can be added anywhere along the chain
const router1 = Router()
const router2 = Router()
app.route('/route', fooware, router1)
router1.route('/nested', barware, router2)
router2.get('/subroute', bazware, function ($) {
$.end('response')
})
// runs fooware, then barware, then bazware, and finally the function that returns the response
FAQs
Simple, full featured, nestable router for diet.js
We found that diet-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.
Security News
Deno 2.2 enhances Node.js compatibility, improves dependency management, adds OpenTelemetry support, and expands linting and task automation for developers.
Security News
React's CRA deprecation announcement sparked community criticism over framework recommendations, leading to quick updates acknowledging build tools like Vite as valid alternatives.
Security News
Ransomware payment rates hit an all-time low in 2024 as law enforcement crackdowns, stronger defenses, and shifting policies make attacks riskier and less profitable.