eser 4.1.7 → 4.1.10

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.
Files changed (3) hide show
  1. package/README.md +26 -12
  2. package/eser.js +314 -297
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,20 +1,30 @@
1
1
  # 🖥️ [@eser/cli](./)
2
2
 
3
- Eser Ozvataf's command-line tooling to access things. A multi-purpose CLI that
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
- ## 🚀 Quick Start
7
+ ## 🚀 Installation
8
8
 
9
9
  ```bash
10
- # Using npx (no installation required)
11
- npx eser <command>
10
+ # Install script (macOS/Linux)
11
+ curl -fsSL https://eser.run/install | sh
12
12
 
13
- # Using Deno
14
- deno run --allow-all jsr:@eser/cli <command>
13
+ # Homebrew (macOS/Linux)
14
+ brew install eser/tap/eser
15
15
 
16
- # Global installation via npm
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
- └── version Show version number
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
- npx eser install
213
+ eser install
203
214
 
204
215
  # Update to the latest version
205
- npx eser update
216
+ eser update
206
217
 
207
218
  # Show version
208
- npx eser version
209
- npx eser version --bare # version number only
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