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
A router middleware for StricJS.
import { Router } from "@stricjs/router";
new Router()
// Add a handler to route "/home"
.use("GET", "/home", () =>
new Response("Hello!"))
// Return a 404 for all other routes
.use("/(.*)", () =>
new Response("Not Found"))
// Serve directly
.serve();Benchmark
You can see the latest benchmark result here.
I recommend benchmarking this on your machine.