generateproj 1.0.0 → 2.0.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.
Files changed (2) hide show
  1. package/README.md +25 -27
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -1,41 +1,39 @@
1
- # Welcome to Progen 👋
1
+ # Welcome to GenerateProj 👋
2
2
 
3
- [![Version](https://img.shields.io/npm/v/creaprogetto.svg)](https://www.npmjs.com/package/creaprogetto)
4
- [![Documentation](https://img.shields.io/badge/documentation-yes-brightgreen.svg)](https://www.npmjs.com/package/creaprogetto)
5
- [![License: ISC](https://img.shields.io/badge/License-ISC-yellow.svg)](#)
3
+ [![Version](https://img.shields.io/npm/v/generateproj.svg)](https://www.npmjs.com/package/generateproj) [![Documentation](https://img.shields.io/badge/documentation-yes-brightgreen.svg)](https://www.npmjs.com/package/generateproj) [![License: ISC](https://img.shields.io/badge/License-ISC-yellow.svg)](#)
6
4
 
7
- > **creaprogetto** è uno strumento da riga di comando pensato per semplificare e velocizzare la creazione di progetti software.
8
- > Supporta la generazione automatica di strutture base per i linguaggi e ambienti più comuni: **Java**, **Node.js**, **HTML/CSS/JavaScript**, **C++**, **astro**, **python**, **react (react+vite)** e **nextjs base**.
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
- ## 🚀 Installazione
12
+ ## Installation
15
13
 
16
- ### Installazione Globale
14
+ ### Globale Installation
17
15
 
18
16
  ```bash
19
- npm install -g creaprogetto
17
+ npm install -g generateproj
20
18
  ```
21
19
 
22
- ### Installazione Locale
20
+ ### Local Installation
23
21
 
24
22
  ```bash
25
- npm install creaprogetto
23
+ npm install generateproj
26
24
  ```
27
25
 
28
26
  ---
29
27
 
30
- ## 🧪 Utilizzo
28
+ ## Usage
31
29
 
32
- ### Creazione di un nuovo progetto
30
+ ### Create a new project
33
31
 
34
32
  ```bash
35
- creaprogetto init <tipo>
33
+ generateproj <type> or gpj <type>
36
34
  ```
37
35
 
38
- Dove `<tipo>` può essere uno dei seguenti:
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
- Esempio:
47
+ Example:
50
48
 
51
49
  ```bash
52
- creaprogetto init java
53
- creaprogetto init nodejs
54
- creaprogetto init html
55
- creaprogetto init cpp
56
- creaprogetto init astro
57
- creaprogetto init python
58
- creaprogetto init react
59
- creaprogetto init nextjs
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
- ## 👤 Autore
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
- ## ⭐️ Supporta il progetto ##
71
+ ## Support
74
72
 
75
- Se questo progetto ti è sembrato utile o vuoi dare delle opinioni non esitare a scrivermi!
73
+ If you found this project useful or want to give feedback, feel free to reach out!
76
74
 
77
75
  ---
78
76
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "generateproj",
3
- "version": "1.0.0",
3
+ "version": "2.0.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",