Skip to content

Commit

Permalink
Merge pull request #1916 from TMantas/mvc-fastify-fix
Browse files Browse the repository at this point in the history
docs(mvc): fixed required package for using with fastify
  • Loading branch information
kamilmysliwiec committed May 12, 2021
2 parents 86594ee + 76bb1fe commit 0ea3722
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/techniques/mvc.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ A working example is available [here](https://github.com/nestjs/nest/tree/master
As mentioned in this [chapter](/techniques/performance), we are able to use any compatible HTTP provider together with Nest. One such library is [Fastify](https://github.com/fastify/fastify). In order to create an MVC application with Fastify, we have to install the following packages:

```bash
$ npm i --save fastify point-of-view handlebars
$ npm i --save fastify-static point-of-view handlebars
```

The next steps cover almost the same process used with Express, with minor differences specific to the platform. Once the installation process is complete, open the `main.ts` file and update its contents:
Expand Down

0 comments on commit 0ea3722

Please sign in to comment.