Nest.js adapter for tinyhttp
Go to file
v1rtl 286aa2aba9
Update FUNDING.yml
2023-10-28 12:00:53 +00:00
.github Update FUNDING.yml 2023-10-28 12:00:53 +00:00
.husky fix: fix lock 2022-12-24 20:42:08 +05:45
src fix: add missing implementations 2022-11-15 11:06:49 +05:45
tests Initial commit 2021-09-12 11:04:47 +03:00
.eslintignore Initial commit 2021-09-12 11:04:47 +03:00
.eslintrc Initial commit 2021-09-12 11:04:47 +03:00
.gitignore Initial commit 2021-09-12 11:04:47 +03:00
.prettierignore Initial commit 2021-09-12 11:04:47 +03:00
.prettierrc Initial commit 2021-09-12 11:04:47 +03:00
LICENSE Initial commit 2021-09-12 11:04:47 +03:00
README.md Update README.md 2023-05-27 21:16:31 +03:00
commitlint.config.cjs Initial commit 2021-09-12 11:04:47 +03:00
package.json fix: fix lock 2022-12-24 20:42:08 +05:45
pnpm-lock.yaml fix: fix lock 2022-12-24 20:42:08 +05:45
rollup.config.js Initial commit 2021-09-12 11:04:47 +03:00
tsconfig.json Initial commit 2021-09-12 11:04:47 +03:00

README.md

@tinyhttp/nest

npm GitHub Workflow Status Coverage

Nest.js adapter for tinyhttp

Install

pnpm i @tinyhttp/nest

Usage:

import { NestFactory } from '@nestjs/core'
import { AppModule } from './app.module'
import { NestTinyHttpApplication } from '@tinyhttp/nest'

async function bootstrap() {
  const app = await NestFactory.create<NestTinyHttpApplication>(AppModule)
  await app.listen(3000)
}
bootstrap()