Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 849 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 849 Bytes

abc

Web uygulamaları geliştirmek için daha iyi bir Deno framework'ü.

tag Build Status license tag tag

Merhaba dünya

import { Application } from "https://deno.land/x/abc@v1.3.3/mod.ts";

const app = new Application();

console.log("http://localhost:8080/");

app
  .get("/", (c) => {
    return "Merhaba, Abc!";
  })
  .start({ port: 8080 });