generateproj 1.0.0 → 2.1.0
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 +25 -27
- package/cli.js +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,41 +1,39 @@
|
|
|
1
|
-
# Welcome to
|
|
1
|
+
# Welcome to GenerateProj 👋
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/creaprogetto)
|
|
5
|
-
[](#)
|
|
3
|
+
[](https://www.npmjs.com/package/generateproj) [](https://www.npmjs.com/package/generateproj) [](#)
|
|
6
4
|
|
|
7
|
-
> **
|
|
8
|
-
>
|
|
5
|
+
> **GenerateProj** it is a CLI tool built to streamline and accelerate software project development.
|
|
6
|
+
> It features automated scaffolding for the most popular languages and development environments: **Java**, **Node.js**, **HTML/CSS/JavaScript**, **C++**, **astro**, **python**, **react (react+vite)** e **nextjs base**.
|
|
9
7
|
|
|
10
8
|
Con un'interfaccia interattiva semplice e intuitiva, `creaprogetto` ti guida nella scelta del tipo di progetto da creare, generando per te una struttura di directory completa e pronta all’uso, comprensiva di file essenziali come `README.md`, `.gitignore`, `main.*` e cartelle organizzate per ogni linguaggio.
|
|
11
9
|
|
|
12
10
|
---
|
|
13
11
|
|
|
14
|
-
##
|
|
12
|
+
## Installation
|
|
15
13
|
|
|
16
|
-
###
|
|
14
|
+
### Globale Installation
|
|
17
15
|
|
|
18
16
|
```bash
|
|
19
|
-
npm install -g
|
|
17
|
+
npm install -g generateproj
|
|
20
18
|
```
|
|
21
19
|
|
|
22
|
-
###
|
|
20
|
+
### Local Installation
|
|
23
21
|
|
|
24
22
|
```bash
|
|
25
|
-
npm install
|
|
23
|
+
npm install generateproj
|
|
26
24
|
```
|
|
27
25
|
|
|
28
26
|
---
|
|
29
27
|
|
|
30
|
-
##
|
|
28
|
+
## Usage
|
|
31
29
|
|
|
32
|
-
###
|
|
30
|
+
### Create a new project
|
|
33
31
|
|
|
34
32
|
```bash
|
|
35
|
-
|
|
33
|
+
generateproj <type> or gpj <type>
|
|
36
34
|
```
|
|
37
35
|
|
|
38
|
-
|
|
36
|
+
Where `<type>` can be one of the following:
|
|
39
37
|
|
|
40
38
|
- `java`
|
|
41
39
|
- `nodejs`
|
|
@@ -46,22 +44,22 @@ Dove `<tipo>` può essere uno dei seguenti:
|
|
|
46
44
|
- `react (react+vite)`
|
|
47
45
|
- `nextjs`
|
|
48
46
|
|
|
49
|
-
|
|
47
|
+
Example:
|
|
50
48
|
|
|
51
49
|
```bash
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
50
|
+
generateproj java
|
|
51
|
+
generateproj nodejs
|
|
52
|
+
generateproj html
|
|
53
|
+
generateproj cpp
|
|
54
|
+
generateproj astro
|
|
55
|
+
generateproj python
|
|
56
|
+
generateproj react
|
|
57
|
+
generateproj nextjs
|
|
60
58
|
```
|
|
61
59
|
|
|
62
60
|
---
|
|
63
61
|
|
|
64
|
-
##
|
|
62
|
+
## Autor
|
|
65
63
|
|
|
66
64
|
**Ciro Andrea Strazzullo**
|
|
67
65
|
|
|
@@ -70,9 +68,9 @@ creaprogetto init nextjs
|
|
|
70
68
|
|
|
71
69
|
---
|
|
72
70
|
|
|
73
|
-
##
|
|
71
|
+
## Support
|
|
74
72
|
|
|
75
|
-
|
|
73
|
+
If you found this project useful or want to give feedback, feel free to reach out!
|
|
76
74
|
|
|
77
75
|
---
|
|
78
76
|
|
package/cli.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "generateproj",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"main": "cli.js",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"license": "ISC",
|
|
10
10
|
"description": "A simple CLI tool to create basic and useful projects in various programming languages.",
|
|
11
11
|
"bin": {
|
|
12
|
-
"generateproj": "cli.js"
|
|
12
|
+
"generateproj": "cli.js",
|
|
13
|
+
"gpj": "cli.js"
|
|
13
14
|
},
|
|
14
15
|
"dependencies": {
|
|
15
16
|
"child_process": "^1.0.2",
|