Skip to content

Commit 7065e43

Browse files
committed
docs: add links to dependencies
1 parent b369245 commit 7065e43

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

content/techniques/caching.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Caching is a great and simple **technique** that helps improve your app's perfor
44

55
#### Installation
66

7-
First install required packages:
7+
First install [required packages](https://github.com/BryanDonovan/node-cache-manager) (and its types for TypeScript users):
88

99
```bash
1010
$ npm install cache-manager

content/techniques/cookies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ An **HTTP cookie** is a small piece of data stored by the user's browser. Cookie
44

55
#### Use with Express (default)
66

7-
First install the required package (and its types for TypeScript users):
7+
First install the [required package](https://github.com/expressjs/cookie-parser) (and its types for TypeScript users):
88

99
```shell
1010
$ npm i cookie-parser

content/techniques/mongo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Nest supports two methods for integrating with the [MongoDB](https://www.mongodb.com/) database. You can either use the built-in [TypeORM](https://github.com/typeorm/typeorm) module described [here](/techniques/database), which has a connector for MongoDB, or use [Mongoose](https://mongoosejs.com), the most popular MongoDB object modeling tool. In this chapter we'll describe the latter, using the dedicated `@nestjs/mongoose` package.
44

5-
Start by installing the required dependencies:
5+
Start by installing the [required dependencies](https://github.com/Automattic/mongoose):
66

77
```bash
88
$ npm install --save @nestjs/mongoose mongoose

content/techniques/sessions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
#### Use with Express (default)
66

7-
First install the required package (and its types for TypeScript users):
7+
First install the [required package](https://github.com/expressjs/session) (and its types for TypeScript users):
88

99
```shell
1010
$ npm i express-session

content/techniques/validation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ $ npm i --save class-validator class-transformer
2424

2525
> info **Hint** The `ValidationPipe` is exported from the `@nestjs/common` package.
2626
27-
Because this pipe uses the `class-validator` and `class-transformer` libraries, there are many options available. You configure these settings via a configuration object passed to the pipe. Following are the built-in options:
27+
Because this pipe uses the [`class-validator`](https://github.com/typestack/class-validator) and [`class-transformer`](https://github.com/typestack/class-transformer) libraries, there are many options available. You configure these settings via a configuration object passed to the pipe. Following are the built-in options:
2828

2929
```typescript
3030
export interface ValidationPipeOptions extends ValidatorOptions {

0 commit comments

Comments
 (0)