Creating our first React Native app

If you're fairly well versed in navigating the terminal, go ahead and cd into whichever directory you plan to place your code. We'll be putting this project on our desktop. You can always move it later if wish.Enter the following into the terminal:

cd ~/Desktop

Then type the following:

react-native init HelloWorld.

This uses the React Native CLI we installed earlier to create a directory called HelloWorld. It then downloads all the necessary dependencies needed to create our first React Native app. Downloading these assets should only take a few minutes if you're on a reasonably fast Internet connection. Once it's done installing, you should see something like the following in your terminal:

Now back in your ...

Get Mastering React Native now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.