How to setup a React Native App
<p><strong>React Native</strong> is one of the most used frameworks for <strong>cross-platform mobile apps development</strong> along side Flutter. So we will see how to setup a basic React Native Project.</p>
<p><strong>Step 1- NodeJS setup-:</strong></p>
<p>You can go to this link-: <a href="https://nodejs.org/en/download/" target="_blank" rel="noopener">https://nodejs.org/en/download/</a></p>
<p>It will lead you to this page and from here you can download the version you want. It will down load the installer on your System.</p>
<p><img src="https://json.commudle.com/rails/active_storage/blobs/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBBbVFWIiwiZXhwIjpudWxsLCJwdXIiOiJibG9iX2lkIn19--4b14236188603b897b022e3e2241760409eea9be/Screenshot%20(2595).png" alt="NodeJS download" width="754" height="410" /></p>
<p>Once you have downloaded the setup file, run the setup file and install NodeJS. Once the installation is complete. Go to command Prompt-:<br /> <em>Win+R -> type cmd -> Press Enter</em>.</p>
<p>In the command prompt type-:</p>
<pre class="language-markup"><code>node -v
npm -v</code></pre>
<p><em><strong> </strong></em></p>
<p>It will return the versions of the node and npm installed on system. If you get something like ''<em> node command not found </em>'' , try re-instaling Node. </p>