# abc **Repository Path**: nur/abc ## Basic Information - **Project Name**: abc - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-06-11 - **Last Updated**: 2021-06-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Abc > **A** **b**etter Deno framework to **c**reate web application [![tag](https://img.shields.io/github/tag/zhmushan/abc.svg)](https://github.com/zhmushan/abc) [![Build Status](https://github.com/zhmushan/abc/workflows/ci/badge.svg?branch=master)](https://github.com/zhmushan/abc/actions) [![license](https://img.shields.io/github/license/zhmushan/abc.svg)](https://github.com/zhmushan/abc) [![tag](https://img.shields.io/badge/deno->=1.0.0-green.svg)](https://github.com/denoland/deno) [![tag](https://img.shields.io/badge/std-0.92.0-green.svg)](https://github.com/denoland/deno) #### Quick links - [API Reference](https://doc.deno.land/https/deno.land/x/abc/mod.ts) - [Guides](https://deno.land/x/abc/docs/table_of_contents.md) - [Examples](https://deno.land/x/abc/examples) - [Changelog](https://deno.land/x/abc/CHANGELOG.md) ## Hello World ```ts import { Application } from "https://deno.land/x/abc@v1.3.1/mod.ts"; const app = new Application(); console.log("http://localhost:8080/"); app .get("/hello", (c) => { return "Hello, Abc!"; }) .start({ port: 8080 }); ```