An open API service indexing awesome lists of open source software.

https://github.com/tinyhttp/nest

Nest.js adapter for tinyhttp
https://github.com/tinyhttp/nest

Last synced: 2 months ago
JSON representation

Nest.js adapter for tinyhttp

Awesome Lists containing this project

README

        

# @tinyhttp/nest

[![npm][npm-img]][npm-url] [![GitHub Workflow Status][gh-actions-img]][github-actions] [![Coverage][cov-img]][cov-url]

Nest.js adapter for tinyhttp

## Install

```sh
pnpm i @tinyhttp/nest
```

## Usage:

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

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

[npm-url]: https://npmjs.com/package/@tinyhttp/nest
[github-actions]: https://github.com/tinyhttp/nest/actions
[gh-actions-img]: https://img.shields.io/github/workflow/status/tinyhttp/nest/CI?style=for-the-badge&logo=github&label=&color=hotpink
[cov-img]: https://img.shields.io/coveralls/github/tinyhttp/nest?style=for-the-badge&color=hotpink
[cov-url]: https://coveralls.io/github/tinyhttp/nest
[npm-img]: https://img.shields.io/npm/dt/@tinyhttp/nest?style=for-the-badge&color=hotpink