ISSUE_TEMPLATE.md 1.42 KB
Newer Older
1
If you are reporting a bug, please fill in below. Otherwise feel free to remove this template entirely.
2

3
4
### Can you reproduce the problem with latest npm?

5
6
7
8
9
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:
10
11
12
13
14
15
16
17
18

```
npm install -g npm@latest

cd your_project_directory
rm -rf node_modules
npm install
```

19
Then try to reproduce the issue again.
20
21
22

Can you still reproduce it?

23
24
25
26
27
28
### Description

What are you reporting?

### Expected behavior

Dan Abramov's avatar
Dan Abramov committed
29
Tell us what you think should happen.
30
31
32

### Actual behavior

Dan Abramov's avatar
Dan Abramov committed
33
Tell us what actually happens.
34
35
36

### Environment

Dan Abramov's avatar
Dan Abramov committed
37
Run these commands in the project folder and fill in their results:
38

Dan Abramov's avatar
Dan Abramov committed
39
40
41
42
43
44
45
46
47
48
49
50
51
52
1. `npm ls react-scripts` (if you haven’t ejected): 
2. `node -v`: 
3. `npm -v`:

Then, specify:

1. Operating system:
2. Browser and version:

### Reproducible Demo

Please take the time to create a new app that reproduces the issue.

Alternatively, you could copy your app that experiences the problem and start removing things until you’re left with the minimal reproducible demo.
53

54
(Accidentally, you might get to the root of your problem during that process.)
55
56
57

Push to GitHub and paste the link here.

Dan Abramov's avatar
Dan Abramov committed
58
By doing this, you're helping the Create React App contributors a big time!
59
Demonstrable issues gets fixed faster.