abc icon indicating copy to clipboard operation
abc copied to clipboard

A better Deno framework to create web application.

Results 10 abc issues
Sort by recently updated
recently updated
newest added

Just tested the super-simple Hello World example from Readme.md and the following command: `curl -H "Connection:close" localhost:8080/hello -i -vvv1` returns: `* Connection #0 to host ... left intact` It keeps...

how to deploy this code to **deno deploy** ``` import { Application } from "https://deno.land/x/abc/mod.ts"; const app = new Application(); console.log("http://localhost:8080/"); app .get("/hello", (c) => { return "Hello, Abc!"; })...

Is it possible to customize the not found error handler? Or an error handler in generell?

bug

- [x] Skipper - [x] Tests - [ ] Better typings - [ ] Session field ### Better typings I already considered this but IMO it's very useful to be...

I was trying to use abc with [vercel-deno](https://github.com/TooTallNate/vercel-deno) > Your serverless function file is expected to export default the **_HTTP handler function_**, and then vercel-deno takes care of invoking that...

- core - [ ] Serverless - router - [x] Redesign: For "static routes", we always match strictly equal strings. For "param routes", we will match 1 or more characters,...

[Pagic](https://pagic.org) is a static site generator powered by Deno + React Here are some demos: - [pagic.org](https://pagic.org) - [Deno X ranking](https://yoshixmk.github.io/deno-x-ranking/) - [TypeScript 入门教程](https://ts.xcatliu.com/) If it is possible to use...

Even if I explicitly tell call a function that sets the code to 200, it is still 404. Try it out at https://replit.com/@almenon/ABCStatusError#index.ts by running it and then running `curl...