Attributes
Popular
Repository
Current version released
3 years ago
Versions
- v1.3.3Latest
- v1.3.2
- v1.3.1
- v1.3.0
- v1.2.6
- v1.2.5
- v1.2.4
- v1.2.3
- v1.2.2
- v1.2.1
- v1.2.0
- v1.1.0
- v1.0.3
- v1
- v1.0.2
- v1.0.1
- v1.0.0
- v1.0.0-rc10
- v1.0.0-rc9
- v1.0.0-rc8
- v1.0.0-rc7
- v1.0.0-rc6
- v1.0.0-rc5
- v1.0.0-rc4
- v1.0.0-rc3
- v1.0.0-rc2
- v1.0.0-rc1
- v0.2.11
- v0.2.10
- v0.2.9
- v0.2.8
- v0.2.7
- v0.2.6
- v0.2.5
- v0.2.4
- v0.2.3
- v0.2.2
- v0.2.1
- v0.2.0
- v0.1.11
- v0.1.10
- v0.1.9
- v0.1.8
- v0.1.7
- v0.1.6
- v0.1.5
- v0.1.4
- v0.1.3
- v0.1.2
- v0.1.1
- v0.1.0
Abc
A better Deno framework to create web application
Quick links
Hello World
import { Application } from "https://deno.land/x/abc@v1.3.3/mod.ts";
const app = new Application();
console.log("http://localhost:8080/");
app
.get("/hello", (c) => {
return "Hello, Abc!";
})
.start({ port: 8080 });