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: 8 days ago
JSON representation
A better Deno framework to create web application.
- Host: GitHub
- URL: https://github.com/zhmushan/abc
- Owner: zhmushan
- License: mit
- Created: 2018-12-13T11:17:25.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2021-10-10T16:22:39.000Z (about 3 years ago)
- Last Synced: 2024-12-02T08:59:55.669Z (10 days ago)
- Topics: deno, framework, http, server
- Language: TypeScript
- Homepage: https://doc.deno.land/https/deno.land/x/abc/mod.ts
- Size: 4.59 MB
- Stars: 597
- Watchers: 20
- Forks: 47
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-deno - abc - 一个更好的用于创建Web应用程序的Deno框架。 (Uncategorized / Uncategorized)
- awesome-list - abc
- awesome-deno - abc - A better Deno framework to create web application. (Libraries)
- awesome-deno - abc - A better Deno framework to create web application. ![GitHub stars](https://img.shields.io/github/stars/zhmushan/abc?style=plastic&logoWidth=1) (Modules / Online Playgrounds)
- awesome-deno-cn - @zhmushan/abc
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 });
```