Skip to content

Commit

Permalink
feat(installation): update project create command (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
ankitpmi authored Aug 6, 2024
1 parent 2b321a4 commit 9d9da0f
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions documentation/docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,21 @@ To start a new React Native project, use the **init** command from the CLI and c
npx react-native init APP_NAME --template @mindinventory/react-native-boilerplate
```

or

```jsx title=">_ terminal"
npx @react-native-community/cli@latest init APP_NAME --template @mindinventory/react-native-boilerplate
```

<br />
:::note
- Both commands will initialize a new React Native project with boilerplate code.
- The `npx react-native init` command uses the globally available react-native package to create a new React Native project.
- The `@react-native-community/cli` command is actively maintained, and CLI is recommended for creating React Native projects. It offers more features, bug fixes, and improvements.
:::



## Get the project up and running

Once you've installed everything needed, follow these steps to launch the project:
Expand Down

0 comments on commit 9d9da0f

Please sign in to comment.