create-react-native-init-app 1.0.0 → 1.0.2

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,31 +1,37 @@
1
- # React Native Init App
1
+ # Create React Native Init App
2
2
 
3
3
  Interactive CLI tool to scaffold React Native projects with Clean Architecture.
4
4
 
5
- ## Installation
5
+ ## Installation & Usage
6
6
 
7
- ### Using npx (recommended)
7
+ ### The Easiest Way (Automatic)
8
8
 
9
- ```bash
10
- npx react-native-init-app
11
- ```
12
-
13
- ### Using bunx
9
+ You can initialize a new project directly without installing the CLI globally:
14
10
 
15
11
  ```bash
16
- bunx react-native-init-app
12
+ npm init react-native-init-app
13
+ # or
14
+ bun init react-native-init-app
17
15
  ```
18
16
 
19
- ### Using npm
17
+ ### Using npx or bunx
20
18
 
21
19
  ```bash
22
- npm create react-native-init-app
20
+ npx create-react-native-init-app
21
+ # or
22
+ bunx create-react-native-init-app
23
23
  ```
24
24
 
25
- ### Using the short alias
25
+ ### Global Installation
26
+
27
+ If you prefer to have the commands available everywhere:
26
28
 
27
29
  ```bash
30
+ npm install -g create-react-native-init-app
31
+
32
+ # Now you can use the following commands:
28
33
  rnia
34
+ react-native-init-app
29
35
  ```
30
36
 
31
37
  ## Features
@@ -40,9 +46,9 @@ rnia
40
46
 
41
47
  ```bash
42
48
  # Interactive mode
43
- npx react-native-init-app
49
+ npx create-react-native-init-app
44
50
 
45
- # Short alias
51
+ # Short alias (after global install)
46
52
  rnia
47
53
  ```
48
54