Skip to content

Commit 6141f72

Browse files
authored
--save option no longer needed for npm > 5
As of npm 5.0.0, installed modules are added as a dependency by default, so the --save option is no longer needed. Source: https://blog.npmjs.org/post/161081169345/v500
1 parent 04c2609 commit 6141f72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/graphql/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ In this chapter, we assume a basic understanding of GraphQL, and focus on how to
99
Start by installing the required packages:
1010

1111
```bash
12-
$ npm i --save @nestjs/graphql graphql-tools graphql
12+
$ npm i @nestjs/graphql graphql-tools graphql
1313
```
1414

1515
Depending on what underlying platform you use (Express or Fastify), you must also install either `apollo-server-express` or `apollo-server-fastify`.

0 commit comments

Comments
 (0)