Package Exports
- @stricjs/router
- @stricjs/router/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@stricjs/router) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
An minimal, heavily-optimized router for Stric.
import { Router, macro } from '@stricjs/router';
// Create a router and serve using Bun
export default new Router()
// Handle GET request to `/`
.get('/', macro('Hi'))
// Handle POST request to `/json`
.post('/json', ctx => ctx.data, { body: 'json', wrap: 'json' })
// Return 90 for requests to `/id/90` for instance
.get('/id/:id', ctx => ctx.params.id, { wrap: true })
// Use the default 404 handler
.use(404);See the docs for more details.