For enquiries call:

Phone

+1-469-442-0620

April flash sale-mobile

HomeBlogWeb DevelopmentCreate a New React Project From Scratch [Step-by-Step Guide]

Create a New React Project From Scratch [Step-by-Step Guide]

Published
28th Nov, 2023
Views
view count loader
Read it in
15 Mins
In this article
    Create a New React Project From Scratch [Step-by-Step Guide]

    Hello learners. In this tutorial we will learn How to create a new React app. 

    Before we begin, we need to understand few things. These tutorials are aimed for the aspiring and seasoned web developers & designer

    If you are an aspiring web developer who wants to establish their career in React and other modern frontend technologies, these tutorials will provide you the basic understanding that you need to learn, rehearse and practice. And some additional links as a part of suggestive reading, which you can further dwell upon. 

    As a lifelong learner, we need to be open to new ideas however they may challenge your beliefs at first.  

    Technology is a work in progress. It composes of sections of stable parts which can be applied to solve the problem of our lives. And some sections which are the part of debate and undergoing experimentation and transformation by the pioneers who forged & nurture the systems. 

    The cutting-edge technology tends to follow approximately the following adoption curve.

    Technology Adoption Lifecycle

    Source: Crossing the Chasm  (1990) -Author: Geoffrey Moore  

     
    Technology Adoption Lifecycle 

    As you can see, the curve is divided among 5 sections as categorized by the work of: 

    • Innovators 
    • Early adopters 
    • Early majority 
    • Late majority  
    • Laggards

    Area under the curve represents number of customers  

    During the second phase, there is an important phase known as Chasm. 

    Any nascent technology which becomes main stream must grow this phase with the help of Early adopters along with innovators. And every promising technology has gone through this phase before it has gained enough momentum and has gone mainstream. 

    Before we learn React. We need to learn some concepts. And It will be good to have some basic understanding of how internet works. There are various technical jargon associated and it is a broad topic. If you are complete starter, I hope it will give you some base. 

    We will try to understand and answer the following: 

    1. What is Client & Server? 
    2. What is meant by HTTP?

    Client & Server 

    When a user is connected to the internet with the help of browser (Google Chrome, Mozilla Firefox, Internet Explorer, Safari & Opera). 

    And when we type or do the google search with the help of keywords. We are presented a list of search results. The user computer is a client and google search engine act as server. As it serves to your queries in the form of the best matched results in a reasonable short time, it is good to say that the search results are produced at the blink of an eye. 

    HTTP

    World wide web (W3C) is a consortium which governs the internet. It has set of rules and protocols which defines how the different machines can communicate over the internet. Sir Tim burner Lee is the inventor of the W3C.

    HTTP

    HTTP is a protocol, which tells and describe the transmission of hypermedia on the internet. It is designed based on the client server concept. In which one system is a client which seeks the information and other system is a server who act and fulfil the request of the client. 

    In HTTP, there are various status codes for server, and it describes the status of server based on the client request.  

    Whether the request has been 

    • Successful 
    • any error conditions on Client & Server 
    • redirected by server & so on.

    1. HTML 

    HTML is a mark-up language which is used to create hypermedia document on the internet. Hypermedia based documents are used to exchange information on the internet. HTML should not be confused with programming language such as C, C++, Java & C#. 

    Let’s write a Hello World! HTML document as below: 

    <!DOCTYPE html>
    <html lang="en"> 
    <head> 
    <meta charset="UTF-8"> 
    <title>HTML 5 Document</title> 
    </head> 
    <body>Hello World!</ body> 
    </html>

    To run the above code we can write it down or copy & paste in our favorite text editor and save it as Hello World.html. Please note .html is the file extension. And once we open the file with the browser it will show us the output as below.

    Create a React Project from Scratch

    HTML is composed of various tags which defines the document and it's semantic. Semantic add meaning to the content as expressed by enclosing tags and it is not purely for visual presentation purpose.  

    The HTML 5 document begins with <!DOCTYPE html> 

    HTML has also undergone various revisions and modifications. 

    For e.g. If We need to present the information as paragraph.  

    Then we need to use < p > tag. 

    For Tabular data < table >, Order list < ol > & unordered list < ul > and so on. 

    References:

    2. CSS 

    Brief history

    CSS refers to the cascading style sheets. In the beginning year of the HTML, when HTML was used primarily to exchange information with the help of HTML document on the internet.  

    There was limited functionality to style the webpages. In fact, there were some tags which allows to style a page and change its formatting. But there was no separation of concerns, for e.g. the formatting tag and its associated attributes were often mixed with semantic HTML.

    Create a React Project from Scratch

    And one of the early innovators Håkon Wium Lie recognized that there is a need of web page styling language which can address the presentation part of the webpages including the layout. And there is a need of separation of concerns.  

    Håkon Wium Lie along with the co-inventor Bert Bos had written the specification of CSS. 

    < table> & its sibling tags were heavily used to structure the layout of the webpages. 

    For E.g. To create multi column layout < table> were frequently used. It worked well to create the initial push to the web layouts, but it has own draw backs - More on the history of CSS

    To know more about how we can use CSS, we will start with previous code. To change the text color of Hello World! from black to green, we will declare a stylesheet called text.css. 

    Naming convention for filename plays important rule, in recalling the file name when your source code becomes huge. It is good to start building on these habits. 

    Hello World.html 

    <!DOCTYPE html> 
    <html lang="en"> 
    <head> 
    <meta charset="UTF-8"> 
    <link rel="stylesheet" type="text/csshref="text.css" /> 
    <title>HTML 5 Document</title> 
    </head> 
    <body>Hello World!</body> 
    </html> 

     Text.css 

    body{ 
    font-family: 'Arial', Helvetica, Verdana; 
    color: red; 
    font-weight: bold; 
    font-size: large; 
    }

    Create a React Project from Scratch

    As you can see from the browser, it displays the Hello World! text in red color and font appearance is bold & larger. 

    CSS has lots of modules which helps us to create sophisticated layouts, cool animations, image processing using css filters, accessibility (a11y) & much more. 

    The current version of CSS is CSS3. As technology gradually evolved, so did the CSS.  

    It is maintained by CSS working group, which consists of invited experts and working group members.  

    If you are interested to explore more you may check some of these links. 

    Reference: 

    3. JavaScript 

    • JavaScript is used to bring interactivity on the web pages. 
    • JavaScript is based on the ECMA Script standard.  
    • Every browser has JavaScript engines, which interpret the JavaScript code. 

    As described in the previous sections that HTML is responsible for the structure and semantic aspect for the webpage. And with the help of CSS, the look and feel, advanced layouts and interactivity can be added using animation and pseudo classes. 

    JavaScript brings lots of interactivity to your pages. It is good to say that it adds wings to your creation. But sometimes these wings catch the fire, so we also know how to troubleshoot and prevent such instances from happening.  

    For e.g. If you ask your user to input their age. To validate the age, we can write the JavaScript code and validate, whether the input is correct or not. 

    Create a React Project from Scratch

    To recap and understand the HTML, CSS and JavaScript in brief. We can refer to the above presentation. 

    4. ECMA Script and New Versions 

    ECMAScript describes the functionality of JavaScript. ECMAScript is maintained by ECMA International. 

    The aim of ECMA Script is to ensure that webpages can run the same JavaScript code across different browser, & it is also interoperable with other programming language. In this context the Interoperability means that other programming language can invoke JavaScript function. 

    Programming languages such as Dart can run JavaScript code. Some framework such as Blazor in the world of . NET can invoke functions written in JavaScript. In terms of specification itries to draws the line of standard for different browser vendors. Microsoft, Firefox, Google, Chrome, Opera & Apple each has its own browsers which runs on different operating systems whether it is on Windows, Linux and macOS. Sometimes the browser vendor takes a lead while implementing a feature. But the specifications for that feature are written later by standard body (ECMA International). The new feature may be adopted by another browsers vendor later in the evolution process.  

    Different browser vendor has different development life cycle in terms of features implementation. And it takes time for the specification to become a standard. And the new version of browser is released by multiple vendor with the specification and takes time to become a standard on Web. In past few years since ECMAScript has undergone various revisions and changes as described by ES6, ES7, ES8 & ES9 & more we will see in future. 

    And these changes have resulted into the major impact on the JavaScript syntax. More references: 

    4a. Intro to React & Virtual DOM 

    React is a library which is publicly released by Facebook in 2013. 

    React was created by Jordan Walke, a software engineer working at Facebook. React allows us to divide our code into components. And these components communicate with each other in a unidirectional flow. As the components follows a standard development structure in nomenclature and design patterns. This helps in reducing of the knowledge gaps when different team members work and manage a project in which they have not worked from scratch.  

    React is based on the Functional programming principles as the design pattern. It is also follow the DRY principle. DRY stands for Dont repeat yourself. That means any piece of code which serves a specific task or function should not be repeated as the duplicate code. But we can declare it as a component and increase the reusability. Design pattern is a wide topic. If you are interested to know more about the design pattern you may check out these references.

    4b. Quick timeline of React release 

    Technology goes through a lot of wear and tear before it is adopted in mainstream and it also need to prove it's worth in real life production environment. 

    The complete timeline of React release is available on GitHub. 

    Some of the interesting highlights from React release. 

    VersionRelease DateDescription
    0.3.029th May 2013Public release
    0.13.010th March 2015Support for ES6 Classes
    15.007th April 2016New changes on how React interacts with DOM, added support for SVG attributes, Dropped support for IE8
    16.026th September 2017MIT license. Reduced file size. Better error handling
    16.505th September 2018Added support for React Devtools profiler (Flame chart, Ranked chart, Component chart & more)
    16.816th February 2019Introduced concept of hooks

    Reference: 

    4c. Component driven development 

    The beauty to work with React is that you can structure and assemble your code in components. The parent component can contain various child components. The parent component passes the data values to child, to maintain the uni-directional data flow. 

    For data driven apps, React seems to be a good choice. 

    4d.  Virtual DOM - The secret sauce of DOM Optimisation 

    Before we understand Virtual DOM, lettake a look at DOM. DOM refers to document object model.DOM is referred by the browser to render the HTML. 

    Create a React Project from Scratch

    The HTML is converted into DOM. To simply visualise the DOM you can think of a tree trunk and which has its roots spread down below.

    Create a React Project from Scratch

    In DOM visualisation tree we can see that there are different nodes which are connected to html. In DOM, whenever the new nodes are inserted and deleted there is cost in terms of computation and memory footprint during such operations. And this is a little costly affair. 

    Virtual DOM acts as performance optimiser in these operations.  

    The Virtual DOM has two copies, one is the master copy of the node and another one is the copy of the changes to be done. 

    Virtual DOM reduces the cost in terms of memory and processing time to apply the changes. It applies the minimal changes required on the DOM. The process is also called reconciliation and is achieved by render() function in React. 

    Reference: 

    5. Getting Started

    5a. Picking the development IDE or the Editor 

    To work with code, we need an editor which can provides us the following: 

    • An engaging developer experience 
    • Notify and spot errors in advance 
    • Can perform autocomplete, syntax highlighting and maintain readability of code 
    • Easy to customise and provide plugins to help in developer workflow 
    • Also provide us flexibility to create our own plugins 
    • And help in code collaboration while working with multiple team members. 

    There are various editors available for developers in market such as Sublime, Atom, Brackets and Visual Studio Code & WebStorm IDE.  All of them have their pros & cons.  

    In our current project we are sticking to Visual studio code. It is available for Windows, Mac and Linux.  

    You may download the editor based on your operating system.

    5b. Environment Setup 

    To run React we will require Node.js on our operating system. Node.js is written by Ryan Dahl and is based on Chrome V8 engine.  

    Download Node.js & visit the url

    And we will install the release with even number and LTS (Long term support) 

    We will be installing the Node.js version 12. It also includes npm which we will use to run our first app in React 

    To run Node.js we can use command prompt on Windows and use Terminal on macOS.To check the Node.js version, we need to run the following command. 

    Create a React Project from Scratch

    node --version

    As you can see from screenshot that we have installed version 12 (v12.18.2) 

    After installation of Node & npm.we will be creating to create a React app with command line interface (CLI). 

    mkdir Codefactory

    Installation of create-react-app 

    I have created a directory called Codefactory 

    And in that directory, I am going to run the following command 

    npx create-react-app my-app

    After couple of minutes, the packages will be installed. 

    6. Quick intro to Node & NPM

    In the previous sections we have mentioned the use of Node and NPM. 

    Node.js help developers to use JavaScript as the main language to build their apps. It is open source.  

    Some of its salient features are: 

    • Event driven 
    • Non-blocking I/O (input/output) 
    • cross platform run time environment 
    • Based on Chrome V8 JavaScript Engine

    Ryan Dahl is the creator of Node.js. 

    V8 supports new features of JavaScript and those features are made available to Node.js. And which keep the Node.js in mainstream based on the recent development and upgradation happening in the ecosystem of JavaScript and ECMAScript. 

    Since modularity is much needed and required by developers. 

    Node.js follows the concepts of modules as characterized by NPM. 

    NPM is a package manager for Node.js modules and various packages are available for developers to test and experiment with their code -Official site.

    References: 

    7. Your first React app 

    7.1 Start with the boilerplate app 

    Now let's go back to terminal & run our app. 

    We will go to directory my-app and after running the following command 

    cd my-app

    Now you are in my-app directory, where the npx has downloaded the dependencies and modules.  

    7.2 File structure of React app 

    Now, we will go to Visual studio code. We will go to menu bar and Add the folder my-app to workspace. 

    Step-by-Step: Create a React Project From Scratch

    In the Visual studio, the explorer will list down the files under the directory structure 

    7.3 Run your React app 

    Now is the time to run the React app.  

    To open terminal go to menu bar and go to Terminal > New Terminal. This will open the terminal at the bottom. 

    We need to type following command in terminal to start the app.  

    npm start 

    The command line will instruct the app to open in a new browser 

    Create a React Project from Scratch

    So, here we can see the app running. 

    Good job so far!

    And as per the instructions from screenshot we will open the App.js 

    The App.js will show a bunch of import statements and 

    function App()

    There are various methods to create React app via CLI such as yarn and npm on local system. 

    In case you are facing problems during installation. 

    As an alternative approach to create a React app, you can check StackBlitz

    And create a new workspace of React 

    It will provide you an online playground to tinker and play with the source code in the browser itself. 

    Create a React Project from Scratch

    At the left there is a workspace and at the right output from the app. 

    It will show you the index.js which show the import statement, class App component declaration and the render() function. The render function contains JSX. And this allow us to write HTML in JS. This is for a little human friendly version for readability for both experienced programmers and newbie. Reference 

    Unlock the Power of Python: Master the Best Course for Python Programming and Ignite Your Coding Journey Today!

    7.4 Debugging tool 

    React provides the React Developer tools to check and inspect the components created. It is a very handy tool for debugging. 

    To install React developer tools we will open the below url in google chrome and install add-on from chrome web store  

    Create a React Project from Scratch
    Once we have clicked on Add to Chrome, the tool will be installed.  

    Step-by-Step: Create a React Project From Scratch

    To open the tool go to your project at localhost. And right click it will show the context menu and click on inspect

    To open the tool go to Components tab as shown below:

    Step-by-Step: Create a React Project From Scratch

    8. Tinker and Play 

    Once we have opened the file App.js in our main project created from CLI. We can tinker around and play with the code. 

    On line number 10, We have a paragraph tag. We can choose any message we want to write and see how it appears on the React app. 

    For E.g. I have added this message in <p> Paragraph tag and inside of the paragraph tag there is a right foot icon enclosed in <big> Bigger text tag. Once we save the file, it will auto reload on the app. So, the auto reload feature saves us from manually load the browser when new changes are saved to disk. 

     <p > 
            A Journey of a Thousand Miles Begins with a Single Step.  
            <big></big>
    </p >

    Create a React Project From Scratch

    Now feel free to introduce your messages, add some tags and play around. I hope this will serve a good starting point for you to learn and practice. 

    Before you acquire the skills to become a React developer, I hope the understanding of HTML, CSS and JavaScript will give you a good foundation. HappLearning!.

    Become a pro at Web Development with the help of our  React training courses. Experience Immersive Learning. 

    Profile

    Gaurav Mishra

    Author

    Gaurav Mishra is an expert in user-interface development and user-experience design, with more than 13+ years of experience. Comfortable to work with any kind of technology, he has growth mindset and keep a beginner mind. He has provided workshops and training in UI development, UX design, and Drupal. He has mentored and trained various students around the world. Gaurav has played the key role in the success of many organizations and likes to build products and services from scratch which delight people.  He likes to challenge the status quo to bring out the best from team & reshape the organisation culture. He likes all genres of music, from Indian classical to club music. 

    Share This Article
    Ready to Master the Skills that Drive Your Career?

    Avail your free 1:1 mentorship session.

    Select
    Your Message (Optional)

    Upcoming Web Development Batches & Dates

    NameDateFeeKnow more
    Course advisor icon
    Course Advisor
    Whatsapp/Chat icon