@chat-js/cli 0.1.0
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/README.md +20 -0
- package/dist/index.js +20842 -0
- package/package.json +49 -0
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# @chat-js/cli
|
|
2
|
+
|
|
3
|
+
CLI to scaffold and extend ChatJS apps.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx @chat-js/cli@latest
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Or with the command alias:
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
npx @chat-js/cli@latest chat-js create
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
After install, both binaries are available:
|
|
18
|
+
|
|
19
|
+
- `chat-js`
|
|
20
|
+
- `create-chat-app` (deprecated alias)
|