Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/zhmushan/abc

A better Deno framework to create web application.
https://github.com/zhmushan/abc

deno framework http server

Last synced: about 2 months ago
JSON representation

A better Deno framework to create web application.

Lists

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.98.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/[email protected]/mod.ts";

const app = new Application();

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

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