xserver-cli 0.9.9 → 1.0.0-rc.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 +30 -17
- package/dist/index.js +1310 -0
- package/dist/index.js.map +1 -0
- package/package.json +46 -16
- package/index.js +0 -47
package/README.md
CHANGED
|
@@ -1,17 +1,30 @@
|
|
|
1
|
-
# xserver-cli
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
1
|
+
# xserver-cli
|
|
2
|
+
|
|
3
|
+
XServer のレンタルサーバーをターミナルから操作するための公式 CLI ツール。
|
|
4
|
+
|
|
5
|
+
## インストール
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install -g xserver-cli
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## クイックスタート
|
|
12
|
+
|
|
13
|
+
```bash
|
|
14
|
+
# APIキーを設定
|
|
15
|
+
xserver auth login
|
|
16
|
+
|
|
17
|
+
# サーバー情報を取得
|
|
18
|
+
xserver server info
|
|
19
|
+
|
|
20
|
+
# 利用可能なコマンドを表示
|
|
21
|
+
xserver --help
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## ドキュメント
|
|
25
|
+
|
|
26
|
+
- [XServer CLI リファレンス](https://developer.xserver.ne.jp/cli/server/)
|
|
27
|
+
|
|
28
|
+
## ライセンス
|
|
29
|
+
|
|
30
|
+
MIT
|