faster
faster copied to clipboard
A fast and optimized middleware server with an absurdly small amount of code (300 lines) built on top of Deno's native HTTP APIs with no dependencies. It also has a collection of useful middlewares: l...
Hi, first of all, great work on faster, love it so far! I'm running into an issue when trying to handle HEAD requests (using them from the frontend to see...
Hi, Thanks for giving from your time and creating a small, super-fast server library for Deno! I'd like to ask for a feature; In `express.js` (and many others) you can...
``` import { req, res, Server, serveStatic, } from "https://deno.land/x/faster/mod.ts"; const port = parseInt(Deno.env.get("PORT") || "8080"); const server = new Server(); server.get( "/*", serveStatic("./dist"), ); console.log(`🚀 Listening on port ${port}:...