@aryaminus/controlkeel 0.1.14 → 0.1.15
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 +9 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,18 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
This package is a bootstrap installer for the native ControlKeel CLI.
|
|
4
4
|
|
|
5
|
+
Both npmjs and GitHub Packages publish the same bootstrap package. In both cases, installation downloads the matching native ControlKeel binary from GitHub Releases.
|
|
6
|
+
|
|
5
7
|
## Install
|
|
6
8
|
|
|
7
9
|
```bash
|
|
8
10
|
npm i -g @aryaminus/controlkeel
|
|
11
|
+
# or: pnpm add -g @aryaminus/controlkeel
|
|
12
|
+
# or: yarn global add @aryaminus/controlkeel
|
|
13
|
+
|
|
14
|
+
# one-off run
|
|
15
|
+
npx @aryaminus/controlkeel@latest
|
|
9
16
|
```
|
|
10
17
|
|
|
11
|
-
The package
|
|
18
|
+
The package installs and exposes the `controlkeel` command.
|
|
12
19
|
|
|
13
20
|
You can also install the same bootstrap package from GitHub Packages:
|
|
14
21
|
|
|
15
22
|
```bash
|
|
16
23
|
echo "@aryaminus:registry=https://npm.pkg.github.com" >> ~/.npmrc
|
|
17
|
-
echo "//npm.pkg.github.com/:_authToken=
|
|
24
|
+
echo "//npm.pkg.github.com/:_authToken=YOUR_GITHUB_TOKEN_WITH_READ_PACKAGES" >> ~/.npmrc
|
|
18
25
|
npm i -g @aryaminus/controlkeel --registry=https://npm.pkg.github.com
|
|
19
26
|
```
|