File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -19,14 +19,14 @@ $ yarn global add create-esri-react-app
19
19
### How to create new ESRI React App
20
20
To create ESRI React application run:
21
21
```
22
- $ create-esri-react-app app_name
22
+ $ create-esri-react-app esri_app
23
23
```
24
24
25
- It will create a directory called ` app_name ` inside the current folder.<br >
25
+ It will create a directory called ` esri_app ` inside the current folder.<br >
26
26
Inside that directory, it will generate the initial project structure and install the transitive dependencies:
27
27
28
28
```
29
- app_name
29
+ esri_app
30
30
├── README.md
31
31
├── node_modules
32
32
├── package.json
@@ -45,6 +45,14 @@ app_name
45
45
└── registerServiceWorker.js
46
46
```
47
47
48
+ ### Choosing ESRI ArcGIS JS api version
49
+ You can specify version of ESRI ArcGIS JS api during creation process. If you don't specify ESRI ArcGIS JS api version default version will be v4.
50
+ ```
51
+ $ create-esri-react-app esri_app_v4
52
+ - or -
53
+ $ create-esri-react-app esri_app_v3 -v 3
54
+ ```
55
+
48
56
### Information's related to Create React App
49
57
Create React apps with no build configuration.
50
58
You can’t perform that action at this time.
0 commit comments