Security News
PyPI Introduces Digital Attestations to Strengthen Python Package Security
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
@ditojs/router
Advanced tools
Dito.js Router – Dito.js is a declarative and modern web framework, based on Objection.js, Koa.js and Vue.js
Dito.js is a declarative and modern web framework with a focus on API driven development, based on Koa.js, Objection.js and Vue.js
Released in 2018 under the MIT license, with support by https://lineto.com/
Dito.js Router is a high performance, tree-based, framework agnostic HTTP router, based on trek-router, which in turn is inspired by Echo's Router.
The router relies on a tree structure which makes heavy use of common prefixes, essentially a prefix tree.
import Koa from 'koa'
import Router from '@ditojs/router'
const app = new Koa()
const router = new Router()
// static route
router.get('/folders/files/bolt.gif', ctx => {
ctx.body = `this ain't no GIF!`
})
// param route
router.get('/users/:id', ctx => {
ctx.body = `requesting user ${ctx.params.id}`
})
// match-any route
router.get('/books/*', ctx => {
ctx.body = `sub-route: ${ctx.params['*']}`
})
// Handler found
let { handler, params } = router.find('get', '/users/233')
console.log(handler) // ctx => { ... }
// Entry not Found
let { handler, params } = router.find('get', '/photos/233')
console.log(handler) // null
// Install router middleware
app.use(async (ctx, next) => {
const { method, path } = ctx
const result = router.find(method, path)
const { handler, params } = result
if (handler) {
ctx.params = params || {}
return handler(ctx, next)
} else {
try {
await next()
} finally {
if (ctx.body === undefined && ctx.status === 404) {
ctx.status = result.status || 404
if (ctx.status !== 404 && result.allowed) {
ctx.set('Allow', result.allowed.join(', '))
}
}
}
}
})
app.listen(4040, () => console.log('Koa app listening on 4040'))
FAQs
Dito.js Router – Dito.js is a declarative and modern web framework, based on Objection.js, Koa.js and Vue.js
We found that @ditojs/router demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.