zuro-cli 0.0.2-beta.1 → 0.0.2-beta.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 -22
- package/dist/index.js +565 -162
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +565 -162
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,40 +1,44 @@
|
|
|
1
1
|
# zuro-cli
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A CLI for scaffolding backend foundations and modules in your project.
|
|
4
4
|
|
|
5
|
-
##
|
|
5
|
+
## init
|
|
6
6
|
|
|
7
|
-
|
|
8
|
-
npx zuro-cli@beta init
|
|
9
|
-
```
|
|
7
|
+
Use the `init` command to create a production-ready Express + TypeScript backend foundation.
|
|
10
8
|
|
|
11
|
-
|
|
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
|
|
15
|
-
npx zuro-cli@beta add auth
|
|
12
|
+
npx zuro-cli init
|
|
16
13
|
```
|
|
17
14
|
|
|
18
|
-
##
|
|
19
|
-
|
|
20
|
-
- https://zuro-cli.devbybriyan.com/docs
|
|
15
|
+
## add
|
|
21
16
|
|
|
22
|
-
|
|
17
|
+
Use the `add` command to add modules to your project.
|
|
23
18
|
|
|
24
|
-
|
|
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
|
-
|
|
22
|
+
npx zuro-cli add [module]
|
|
32
23
|
```
|
|
33
24
|
|
|
34
|
-
|
|
25
|
+
Example:
|
|
35
26
|
|
|
36
27
|
```bash
|
|
37
|
-
|
|
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.
|