@arcgis/create 5.0.0-next.99 → 5.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE.md +9 -5
- package/README.md +26 -28
- package/dist/init.js +10989 -5311
- package/package.json +2 -2
package/LICENSE.md
CHANGED
|
@@ -4,10 +4,14 @@ COPYRIGHT © Esri
|
|
|
4
4
|
|
|
5
5
|
All rights reserved under the copyright laws of the United States and applicable international laws, treaties, and conventions.
|
|
6
6
|
|
|
7
|
-
This material is licensed for use under the Esri Master License Agreement (MLA), and is bound by the terms of that agreement.
|
|
7
|
+
This material is licensed for use under the [Esri Master License Agreement (MLA)](https://www.esri.com/content/dam/esrisites/en-us/media/legal/ma-full/ma-full.pdf), and is bound by the terms of that agreement.
|
|
8
|
+
You may redistribute and use this code without modification, provided you adhere to the terms of the MLA and include this copyright notice.
|
|
8
9
|
|
|
9
|
-
|
|
10
|
+
For additional information, contact:
|
|
11
|
+
Environmental Systems Research Institute, Inc.
|
|
12
|
+
Attn: Contracts and Legal Services Department
|
|
13
|
+
380 New York Street
|
|
14
|
+
Redlands, California, USA 92373
|
|
15
|
+
USA
|
|
10
16
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
email: contracts@esri.com
|
|
17
|
+
email: legal@esri.com
|
package/README.md
CHANGED
|
@@ -1,42 +1,40 @@
|
|
|
1
|
-
#
|
|
1
|
+
# ArcGIS Maps SDK for JavaScript - Create CLI
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
- [Usage](#usage)
|
|
6
|
-
- [Commands](#commands)
|
|
3
|
+
The ArcGIS Maps SDK for JavaScript provides this CLI tool to streamline the process of creating a new web mapping application.
|
|
7
4
|
|
|
8
5
|
## Usage
|
|
9
6
|
|
|
10
|
-
The package is
|
|
11
|
-
|
|
12
|
-
1. run via npm init
|
|
7
|
+
The package is compatible with the [npm init command](https://docs.npmjs.com/cli/v8/commands/npm-init).
|
|
13
8
|
|
|
14
|
-
|
|
9
|
+
To get started, run `npm init @arcgis`, and you will be immediately prompted to initialize a new ArcGIS web application, or run using [npx](https://docs.npmjs.com/cli/v8/commands/npx):
|
|
15
10
|
|
|
16
|
-
|
|
11
|
+
```bash
|
|
12
|
+
npx @arcgis/create
|
|
13
|
+
# Initializes a new React application named "my-arcgis-app"
|
|
14
|
+
npx @arcgis/create -n my-arcgis-app -t react
|
|
15
|
+
```
|
|
17
16
|
|
|
18
|
-
|
|
19
|
-
- `npx @arcgis/create -- -n my-app -t react`
|
|
17
|
+
## CLI options
|
|
20
18
|
|
|
21
|
-
|
|
19
|
+
```bash
|
|
20
|
+
-n, --name <name> Name of the project
|
|
21
|
+
-t, --template <template> Template to use (react, vite, cdn, vue, angular, etc.)
|
|
22
|
+
```
|
|
22
23
|
|
|
23
|
-
|
|
24
|
+
## Resources
|
|
24
25
|
|
|
25
|
-
|
|
26
|
+
- [ArcGIS blog](https://blogs.esri.com/esri/arcgis/tag/javascript/)
|
|
27
|
+
- [System Requirements](https://developers.arcgis.com/javascript/latest/system-requirements/)
|
|
28
|
+
- [Terms of Use](https://www.esri.com/en-us/legal/terms/product-specific-scope-of-use)
|
|
29
|
+
- [Licensing](https://developers.arcgis.com/javascript/latest/licensing/)
|
|
30
|
+
- [Working with `next` versions](https://github.com/Esri/feedback-js-api-next/blob/main/README.md)
|
|
26
31
|
|
|
27
|
-
|
|
32
|
+
## Issues
|
|
28
33
|
|
|
29
|
-
|
|
30
|
-
|
|
34
|
+
- General questions about using this package or the ArcGIS Maps SDK for JavaScript? See the [Esri developer community](https://community.esri.com/t5/arcgis-api-for-javascript/ct-p/arcgis-api-for-javascript).
|
|
35
|
+
- [Technical support](https://support.esri.com/).
|
|
31
36
|
|
|
32
|
-
|
|
33
|
-
-V, --version output the version number
|
|
34
|
-
-n, --name <name> Name of the project
|
|
35
|
-
-t, --template <template> Template to use (react, angular, vanilla, vite, vue, or webpack)
|
|
36
|
-
-p, --packages <packages> Additional packages to add (charts, coding)
|
|
37
|
-
-h, --help display help for command
|
|
37
|
+
## License
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
help [command] display help for command
|
|
42
|
-
```
|
|
39
|
+
This package is licensed under the terms described in the `LICENSE.md` file, located in the root of the package, and at https://js.arcgis.com/5.0/LICENSE.txt.
|
|
40
|
+
For third party notices, see https://js.arcgis.com/5.0/third-party-notices.txt.
|