All Projects → deno-libs → tinyhttp

deno-libs / tinyhttp

Licence: MIT License
🦕 Deno port of tinyhttp, 0-legacy, tiny & fast web framework

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to tinyhttp

aqua
A minimal and fast 🏃 web framework for Deno
Stars: ✭ 219 (+160.71%)
Mutual labels:  web-framework, http-server, deno
stirfry
StirFry is a self contained and lightweight web framework for nodejs
Stars: ✭ 24 (-71.43%)
Mutual labels:  web-framework, http-server
deno-pokemon
a simple api to create and explore pokemons - made with oak deno framework
Stars: ✭ 20 (-76.19%)
Mutual labels:  backend, deno
Polyel-Framework
⚡️ Voltis Core: A PHP framework based on Swoole from the ground up
Stars: ✭ 22 (-73.81%)
Mutual labels:  web-framework, http-server
Http Fake Backend
Build a fake backend by providing the content of JSON files or JavaScript objects through configurable routes.
Stars: ✭ 253 (+201.19%)
Mutual labels:  backend, http-server
backend-server
📠 The backend of the Fairfield Programming Association website.
Stars: ✭ 26 (-69.05%)
Mutual labels:  backend, http-server
i18next-http-backend
i18next-http-backend is a backend layer for i18next using in Node.js, in the browser and for Deno.
Stars: ✭ 270 (+221.43%)
Mutual labels:  backend, deno
nhttp
An Simple http framework for Deno, Deno Deploy and Cloudflare Workers. so hot 🚀
Stars: ✭ 26 (-69.05%)
Mutual labels:  http-server, deno
deno-auth
User authentication implemented in Deno in accordance with MVC architecture
Stars: ✭ 24 (-71.43%)
Mutual labels:  backend, deno
mojo.js
🦄 The Mojolicious real-time web framework for Node.js
Stars: ✭ 145 (+72.62%)
Mutual labels:  backend, web-framework
Webapp.rs
A web application completely written in Rust. 🌍
Stars: ✭ 1,888 (+2147.62%)
Mutual labels:  backend, http-server
flame
Ruby web-framework
Stars: ✭ 43 (-48.81%)
Mutual labels:  backend, web-framework
Tinyhttp
🦄 0-legacy, tiny & fast web framework as a replacement of Express
Stars: ✭ 1,259 (+1398.81%)
Mutual labels:  backend, http-server
http4ts
Server as a Function http toolkit for TypeScript & JavaScript
Stars: ✭ 30 (-64.29%)
Mutual labels:  http-server, deno
Generator Http Fake Backend
Yeoman generator for building a fake backend by providing the content of JSON files or JavaScript objects through configurable routes.
Stars: ✭ 49 (-41.67%)
Mutual labels:  backend, http-server
Goyave
🍐 Elegant Golang REST API Framework
Stars: ✭ 811 (+865.48%)
Mutual labels:  backend, web-framework
Catacumba
Asynchronous web toolkit for clojure built on top of Ratpack / Netty
Stars: ✭ 192 (+128.57%)
Mutual labels:  web-framework, http-server
Hydra
后端一站式微服务框架,提供API、web、websocket,RPC、任务调度、消息消费服务器
Stars: ✭ 407 (+384.52%)
Mutual labels:  backend, http-server
multi-projects-architecture-with-Ktor
A Ktor real world example built on multi-projects architecture
Stars: ✭ 29 (-65.48%)
Mutual labels:  backend, web-framework
shivneri
Component based MVC web framework based on fort architecture targeting good code structures, modularity & performance.
Stars: ✭ 21 (-75%)
Mutual labels:  web-framework, http-server

tinyhttp

nest badge GitHub Workflow Status Codecov Dependency count

This is a Deno port of tinyhttp, 0-legacy, tiny & fast web framework as a replacement of Express.

WARNING! This port is very unstable and is not well tested yet. Wait for the v2 release of tinyhttp for a complete version (see talentlessguy/tinyhttp#198)

Example

import { App } from 'https://deno.land/x/tinyhttp/app.ts'

const app = new App()

app.get('/:name/', (req, res) => {
  res.send(`Hello on ${req.url} from Deno v${Deno.version.deno} and tinyhttp! 🦕`)
})

app.listen(3000, () => console.log(`Started on :3000`))
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].