eser 4.1.8 → 4.1.11
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 +26 -12
- package/eser.js +314 -297
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,20 +1,30 @@
|
|
|
1
1
|
# 🖥️ [@eser/cli](./)
|
|
2
2
|
|
|
3
|
-
Eser
|
|
3
|
+
Eser's swiss-army-knife tooling for your terminal. A multi-purpose CLI that
|
|
4
4
|
dispatches to library modules for codebase management, workflow automation,
|
|
5
5
|
framework scaffolding, and more.
|
|
6
6
|
|
|
7
|
-
## 🚀
|
|
7
|
+
## 🚀 Installation
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
#
|
|
11
|
-
|
|
10
|
+
# Install script (macOS/Linux)
|
|
11
|
+
curl -fsSL https://eser.run/install | sh
|
|
12
12
|
|
|
13
|
-
#
|
|
14
|
-
|
|
13
|
+
# Homebrew (macOS/Linux)
|
|
14
|
+
brew install eser/tap/eser
|
|
15
15
|
|
|
16
|
-
#
|
|
16
|
+
# Nix
|
|
17
|
+
nix profile install github:eser/stack
|
|
18
|
+
|
|
19
|
+
# npm (requires Node.js)
|
|
17
20
|
npm install -g eser
|
|
21
|
+
|
|
22
|
+
# Deno
|
|
23
|
+
deno install -g -A jsr:@eser/cli
|
|
24
|
+
|
|
25
|
+
# Or run without installing
|
|
26
|
+
npx eser <command>
|
|
27
|
+
deno run --allow-all jsr:@eser/cli <command>
|
|
18
28
|
```
|
|
19
29
|
|
|
20
30
|
## 🛠 Command Tree
|
|
@@ -63,7 +73,8 @@ eser
|
|
|
63
73
|
├── system Commands related with this CLI
|
|
64
74
|
├── install Install eser CLI globally
|
|
65
75
|
├── update Update eser CLI to latest version
|
|
66
|
-
|
|
76
|
+
├── version Show version number
|
|
77
|
+
└── doctor Run diagnostic checks
|
|
67
78
|
```
|
|
68
79
|
|
|
69
80
|
## 📋 Commands
|
|
@@ -199,14 +210,17 @@ eser laroux serve [options]
|
|
|
199
210
|
|
|
200
211
|
```bash
|
|
201
212
|
# Install eser CLI globally
|
|
202
|
-
|
|
213
|
+
eser install
|
|
203
214
|
|
|
204
215
|
# Update to the latest version
|
|
205
|
-
|
|
216
|
+
eser update
|
|
206
217
|
|
|
207
218
|
# Show version
|
|
208
|
-
|
|
209
|
-
|
|
219
|
+
eser version
|
|
220
|
+
eser version --bare # version number only
|
|
221
|
+
|
|
222
|
+
# Run diagnostic checks
|
|
223
|
+
eser doctor
|
|
210
224
|
```
|
|
211
225
|
|
|
212
226
|
## License
|