Skip to content

Commit

Permalink
Warn about npm 5 in issue template
Browse files Browse the repository at this point in the history
  • Loading branch information
gaearon committed Jun 23, 2017
1 parent 31a4d14 commit 70e36f0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
If you are reporting a bug, please fill in below. Otherwise feel free to remove this template entirely.

### Can you reproduce the problem with latest npm?
### Can you reproduce the problem with npm 4.x?

Many errors, especially related to "missing modules", are due to npm bugs.

If you're using Windows, [follow these instructions to update npm](https://github.com/npm/npm/wiki/Troubleshooting#upgrading-on-windows).

If you're using OS X or Linux, run this to update npm:
Try to update npm to 4.x first:

```
npm install -g npm@latest
npm install -g npm@4
cd your_project_directory
rm -rf node_modules
npm install
```

**This is especially important if `npm -v` gives you 5 because npm 5 is [known to have many issues](https://github.com/npm/npm/issues/16991).**

Then try to reproduce the issue again.

Can you still reproduce it?
Expand Down

0 comments on commit 70e36f0

Please sign in to comment.