@tinyhttp/app
TypeScript icon, indicating that this package has built-in type declarations

2.2.3 • Public • Published

@tinyhttp/app

The core of tinyhttp. Contains the App, Request and Response. Additionally, it provides special tinyhttp-specific types.

Install

pnpm i @tinyhttp/app

Example

import { App } from '@tinyhttp/app'
import type { Request, Response, NextFunction } from '@tinyhttp/app'

new App()
  .use((req: Request, res: Response, next: NextFunction) => {
    console.log('Did a request')
    next()
  })
  .get('/', (_, res) => res.send('<h1>Hello World</h1>'))
  .get('/page/:page', (req, res) => res.send(`You opened ${req.params.page}`))
  .listen(3000)

Package Sidebar

Install

npm i @tinyhttp/app

Weekly Downloads

81,843

Version

2.2.3

License

MIT

Unpacked Size

76.7 kB

Total Files

21

Last publish

Collaborators

  • dropthebeatbro