Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion en/starter/installing.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,16 @@ $ npm install express --no-save

<div class="doc-box doc-info" markdown="1">
By default with version npm 5.0+, `npm install` adds the module to the `dependencies` list in the `package.json` file; with earlier versions of npm, you must specify the `--save` option explicitly. Then, afterwards, running `npm install` in the app directory will automatically install modules in the dependencies list.
</div>
</div>


## Verify your installation

After installing, confirm Express is available in your project:

```bash
npm ls express
```

You should see `express@x.x.x` in the output. If the package
is missing, re-run the install command above.
Loading