https://github.com/deno-libs/tinyhttp
[IN DEVELOPMENT] 🦕 Deno port of tinyhttp, 0-legacy, tiny & fast web framework
https://github.com/deno-libs/tinyhttp
backend deno http http-server tinyhttp web-framework
Last synced: 20 days ago
JSON representation
[IN DEVELOPMENT] 🦕 Deno port of tinyhttp, 0-legacy, tiny & fast web framework
- Host: GitHub
- URL: https://github.com/deno-libs/tinyhttp
- Owner: deno-libs
- License: mit
- Created: 2021-02-19T11:43:29.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-08-21T17:07:49.000Z (over 1 year ago)
- Last Synced: 2025-03-21T00:51:09.428Z (about 1 month ago)
- Topics: backend, deno, http, http-server, tinyhttp, web-framework
- Language: TypeScript
- Homepage: https://deno.land/x/tinyhttp
- Size: 569 KB
- Stars: 105
- Watchers: 5
- Forks: 5
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
![]()
tinyhttp
[![nest badge][nest-badge]](https://nest.land/package/tinyhttp)
[![GitHub Workflow Status][gh-actions-img]][github-actions]
[![Codecov][codecov-badge]][codecov] [![][docs-badge]][docs]
[![][code-quality-img]][code-quality] ![Dependency count][deps]This is a [Deno](https://deno.land) port of
[tinyhttp](https://github.com/talentlessguy/tinyhttp), 0-legacy, tiny & fast
web framework as a replacement of Express.## Example
```ts
import { App } from 'https://deno.land/x/tinyhttp/app.ts'const app = new App()
app.get('/:name/', async (req, res) => {
await res.send(
`Hello on ${req.url} from Deno v${Deno.version.deno} and tinyhttp! 🦕`,
)
})app.listen(3000, () => console.log(`Started on :3000`))
```[docs-badge]: https://img.shields.io/github/v/release/deno-libs/tinyhttp?label=Docs&logo=deno&style=for-the-badge&color=B06892
[docs]: https://doc.deno.land/https/deno.land/x/tinyhttp/mod.ts
[gh-actions-img]: https://img.shields.io/github/actions/workflow/status/deno-libs/tinyhttp/main.yml?branch=master&style=for-the-badge&logo=github&label=&color=B06892
[codecov]: https://coveralls.io/github/deno-libs/tinyhttp
[github-actions]: https://github.com/deno-libs/tinyhttp/actions
[codecov-badge]: https://img.shields.io/coveralls/github/deno-libs/tinyhttp?style=for-the-badge&color=B06892&
[nest-badge]: https://img.shields.io/badge/publushed%20on-nest.land-B06892?style=for-the-badge
[code-quality-img]: https://img.shields.io/codefactor/grade/github/deno-libs/tinyhttp?style=for-the-badge&color=B06892
[code-quality]: https://www.codefactor.io/repository/github/deno-libs/tinyhttp
[deps]: https://img.shields.io/endpoint?url=https%3A%2F%2Fdeno-visualizer.danopia.net%2Fshields%2Fdep-count%2Fhttps%2Fx.nest.land%2Ftinyhttp%400.1.23%2Fmod.ts&style=for-the-badge&color=B06892