All Projects → zhmushan → Abc

zhmushan / Abc

Licence: mit
A better Deno framework to create web application.

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to Abc

Autoserver
Create a full-featured REST/GraphQL API from a configuration file
Stars: ✭ 188 (-63.42%)
Mutual labels:  framework, server
Golf
⛳️ The Golf web framework
Stars: ✭ 248 (-51.75%)
Mutual labels:  framework, server
Actionhero
Actionhero is a realtime multi-transport nodejs API Server with integrated cluster capabilities and delayed tasks
Stars: ✭ 2,280 (+343.58%)
Mutual labels:  framework, server
Discord Backup
📦 Complete framework to facilitate server backup using discord.js v12
Stars: ✭ 172 (-66.54%)
Mutual labels:  framework, server
Cppwebframework
​The C++ Web Framework (CWF) is a MVC web framework, Open Source, under MIT License, using C++ with Qt to be used in the development of web applications.
Stars: ✭ 348 (-32.3%)
Mutual labels:  framework, server
Sifrr
⚡️ Set of tiny, independent libraries for creating modern and fast webapps with javascript/typescript
Stars: ✭ 174 (-66.15%)
Mutual labels:  framework, server
Aqueduct
Dart HTTP server framework for building REST APIs. Includes PostgreSQL ORM and OAuth2 provider.
Stars: ✭ 2,412 (+369.26%)
Mutual labels:  framework, server
Xtcp
A TCP Server Framework with graceful shutdown, custom protocol.
Stars: ✭ 116 (-77.43%)
Mutual labels:  framework, server
Pogo
Server framework for Deno
Stars: ✭ 341 (-33.66%)
Mutual labels:  framework, server
Pode
Pode is a Cross-Platform PowerShell web framework for creating REST APIs, Web Sites, and TCP/SMTP servers
Stars: ✭ 329 (-35.99%)
Mutual labels:  framework, server
Pure Http
✨ The simple web framework for Node.js with zero dependencies.
Stars: ✭ 139 (-72.96%)
Mutual labels:  framework, server
Iris
The fastest HTTP/2 Go Web Framework. AWS Lambda, gRPC, MVC, Unique Router, Websockets, Sessions, Test suite, Dependency Injection and more. A true successor of expressjs and laravel | 谢谢 https://github.com/kataras/iris/issues/1329 |
Stars: ✭ 21,587 (+4099.81%)
Mutual labels:  framework, server
Go Xserver
Go 服务器框架(go-x.v2)
Stars: ✭ 137 (-73.35%)
Mutual labels:  framework, server
Ego
Ego is a full-stack web framework written in Go, lightweight and efficient front-end component solutions, based on gin. The front-end is compiled, does not affect the back-end.
Stars: ✭ 185 (-64.01%)
Mutual labels:  framework, server
Ocpp
Python implementation of the Open Charge Point Protocol (OCPP).
Stars: ✭ 127 (-75.29%)
Mutual labels:  framework, server
Moqui Framework
Use Moqui Framework to build enterprise applications based on Java. It includes tools for databases (relational, graph, document), local and web services, web and other UI with screens and forms, security, file/resource access, scripts, templates, l10n, caching, logging, search, rules, workflow, multi-instance, and integration.
Stars: ✭ 205 (-60.12%)
Mutual labels:  framework, server
Micro
Micro is a distributed cloud operating system
Stars: ✭ 10,778 (+1996.89%)
Mutual labels:  framework, server
Gin
Gin is a HTTP web framework written in Go (Golang). It features a Martini-like API with much better performance -- up to 40 times faster. If you need smashing performance, get yourself some Gin.
Stars: ✭ 53,971 (+10400.19%)
Mutual labels:  framework, server
1991
A server-side web framework written in Forth.
Stars: ✭ 309 (-39.88%)
Mutual labels:  framework, server
Vapor
💧 A server-side Swift HTTP web framework.
Stars: ✭ 21,194 (+4023.35%)
Mutual labels:  framework, server

Abc

A better Deno framework to create web application

tag Build Status license tag tag

Quick links

Hello World

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 });
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].