For Beginners: How to Create your Own Manual React App Without Using Cli
<p>With above command, we begin to obtain a clone of the boilerplate code ready for the React project in the latest version.</p>
<p><strong>What is Boilerplate code ?</strong></p>
<blockquote>
<p>In computer programming, <strong>boilerplate code</strong> or <strong>boilerplate</strong> refers to sections of code that have to be included in many places with little or no alteration. It is often used when referring to languages that are considered <em>verbose</em>, i.e. the programmer must write a lot of code to do minimal jobs.</p>
</blockquote>
<p>Firstly you have to create new app directory then run</p>
<pre>
npm init -y</pre>
<p><img alt="" src="https://miro.medium.com/v2/resize:fit:630/1*keUlBkwoDCTYRJfp6lXS3A.png" style="height:409px; width:700px" /></p>
<p>This will generate a Node js working environment for you, and the <strong>package.json</strong> file will be added, which in turn will be the project configuration file for the packages.</p>
<p>Then create file in root directory be our entry point for app</p>
<p><a href="https://medium.com/@waledkama2510/for-beginners-how-to-create-your-own-manual-react-app-without-using-cli-3a6007d7fa32">Click Here</a></p>