SkillAgentSearch skills...

Tinyhttp

[DEPRECATED] 🦕 Deno port of tinyhttp, 0-legacy, tiny & fast web framework

Install / Use

/learn @deno-libs/Tinyhttp
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

<div align="center"> <img src="https://raw.githubusercontent.com/deno-libs/tinyhttp/master/logo.svg" /> <h1 align="center">DEPRECATED! Use <code>npm:@tinyhttp/app</code> directly</h1>

nest badge GitHub Workflow Status Codecov Dependency count

</div>

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

Example

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`))
View on GitHub
GitHub Stars105
CategoryDevelopment
Updated2mo ago
Forks5

Languages

TypeScript

Security Score

100/100

Audited on Jan 24, 2026

No findings