channelkit 1.0.0 → 1.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/README.md +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,15 +33,15 @@ Your app receives every message in a **unified JSON format**, regardless of sour
|
|
|
33
33
|
## Quick Start
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
|
-
npm install -g
|
|
36
|
+
npm install -g channelkit
|
|
37
37
|
channelkit
|
|
38
38
|
```
|
|
39
39
|
|
|
40
40
|
> **Upgrading?** If you previously installed ChannelKit without the `-g` flag (global), you should uninstall it first and reinstall globally. A local install won't put `channelkit` on your PATH, so the CLI command won't be available system-wide:
|
|
41
41
|
>
|
|
42
42
|
> ```bash
|
|
43
|
-
> npm uninstall
|
|
44
|
-
> npm install -g
|
|
43
|
+
> npm uninstall channelkit # remove the local install
|
|
44
|
+
> npm install -g channelkit # reinstall globally
|
|
45
45
|
> ```
|
|
46
46
|
|
|
47
47
|
On first run, ChannelKit will ask how you'd like to set up:
|
|
@@ -766,7 +766,7 @@ channelkit channel provision
|
|
|
766
766
|
## Development
|
|
767
767
|
|
|
768
768
|
```bash
|
|
769
|
-
git clone https://github.com/
|
|
769
|
+
git clone https://github.com/valery380/channelkit.git
|
|
770
770
|
cd channelkit
|
|
771
771
|
npm install
|
|
772
772
|
npm run dev # starts with auto-reload on code changes
|