zuro-cli 0.0.2-beta.1 → 0.0.2-beta.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.
package/README.md CHANGED
@@ -1,40 +1,44 @@
1
1
  # zuro-cli
2
2
 
3
- The backend builder for busy developers.
3
+ A CLI for scaffolding backend foundations and modules in your project.
4
4
 
5
- ## Usage
5
+ ## init
6
6
 
7
- ```bash
8
- npx zuro-cli@beta init
9
- ```
7
+ Use the `init` command to create a production-ready Express + TypeScript backend foundation.
10
8
 
11
- Add modules:
9
+ The `init` command installs core dependencies, creates base files, and prepares your project for module-based backend development.
12
10
 
13
11
  ```bash
14
- npx zuro-cli@beta add database
15
- npx zuro-cli@beta add auth
12
+ npx zuro-cli init
16
13
  ```
17
14
 
18
- ## Docs
19
-
20
- - https://zuro-cli.devbybriyan.com/docs
15
+ ## add
21
16
 
22
- ## Registry
17
+ Use the `add` command to add modules to your project.
23
18
 
24
- Default registry:
25
-
26
- - https://registry.devbybriyan.com/channels/stable.json
27
-
28
- Override for local testing:
19
+ The `add` command scaffolds module files, installs required dependencies, and updates relevant project setup.
29
20
 
30
21
  ```bash
31
- export ZURO_REGISTRY_URL=http://127.0.0.1:8787
22
+ npx zuro-cli add [module]
32
23
  ```
33
24
 
34
- ## Development
25
+ Example:
35
26
 
36
27
  ```bash
37
- corepack pnpm install
38
- corepack pnpm --filter zuro-cli build
39
- corepack pnpm --filter zuro-cli lint
28
+ npx zuro-cli add auth
40
29
  ```
30
+
31
+ Available modules include:
32
+
33
+ - `database`
34
+ - `auth`
35
+ - `validator`
36
+ - `error-handler`
37
+
38
+ ## Documentation
39
+
40
+ Visit https://zuro-cli.devbybriyan.com/docs to view the documentation.
41
+
42
+ ## License
43
+
44
+ Licensed under the MIT license.