zuro-cli 0.0.2-beta.0 → 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 +44 -0
- package/dist/index.js +566 -163
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +566 -163
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# zuro-cli
|
|
2
|
+
|
|
3
|
+
A CLI for scaffolding backend foundations and modules in your project.
|
|
4
|
+
|
|
5
|
+
## init
|
|
6
|
+
|
|
7
|
+
Use the `init` command to create a production-ready Express + TypeScript backend foundation.
|
|
8
|
+
|
|
9
|
+
The `init` command installs core dependencies, creates base files, and prepares your project for module-based backend development.
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
npx zuro-cli init
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## add
|
|
16
|
+
|
|
17
|
+
Use the `add` command to add modules to your project.
|
|
18
|
+
|
|
19
|
+
The `add` command scaffolds module files, installs required dependencies, and updates relevant project setup.
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
npx zuro-cli add [module]
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
Example:
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
npx zuro-cli add auth
|
|
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.
|