SlideShare a Scribd company logo
Thinkwik.com
1
Understanding how to code ReactJS | Basic Setup
and General Understanding
Written by ​Jalaj Sharma
A whole lot of talk about reactJS, redux, better alternative to Angular and more, but
what is all that? Have you found a lot of learning material and went through the
documentation but are still confused about how to code?
Here in this article we will break down all the big terms with reactJS like redux, axios,
react router, JSX and more with explanation and how to code with that. For this part of
the article, we will focus more on the general setup, understanding how to start, create a
basic skeleton with code alongside understanding. For reading this, I believe you have
basic understanding of reactJS​ as this course mainly focuses on how to code reactJS,
best practices, redux etc with their understanding.
Blog Thinkwik
Thinkwik.com
2
What is ReactJS? 1
ReactJS is a javascript library created by the Facebook community to create a user
interface and mainly focuses on building single page application. Some of the core
features of reactJS are:
JSX​​: Javascript and XML (JSX) is a simple javascript that lets creation of DOM
elements more precisely without making use of HTML. It allows us to use HTML syntax
and even old-fashioned javascript for flexibility.
Single Way data flow​​: In component’s renderer, immutable values are passed as
properties. Components are restricted to modify the properties directly by themselves
but they can listen to the callback function.
Virtual DOM​​: Virtual DOM is a copy of the real DOM. Virtual DOM manages nodes of
DOM elements and checks for changes in any element. If it finds a change in any of the
element, it modifies that specific element in the real DOM instead of re-rendering the
complete DOM tree.
Let’s get our hands dirty and understand things better by writing some code and
creating a simple react project. To create a new project, we will use create-react-app,
which provides us a complete boilerplate with a configuration of babel and webpack
setup and more. Make sure you have npm or any other package manager like yarn
installed on your machine as we will be using this for managing our packages.
1
http://blog.thinkwik.com/understanding-how-to-code-reactjs-basic-setup-and-general-understanding/
Blog Thinkwik
Thinkwik.com
3
Your my-shopping-app project will now be running in the browser on port 3000. Open
the created project in any code editor, I will be using atom for this.
Blog Thinkwik
Thinkwik.com
4
The above image shows the basic folder structure provided by create-react-app. Now
since this is our project, let's modify it and add stuff according to our needs.
For this part of our article, we will focus on designing a general workflow with folder
structure we might be needing, creating basic components, designing a page and
making use of higher order components. You can clone and ​download source code​ for
this project and play around with it.
Blog Thinkwik
Thinkwik.com
5
Folder Structure
Blog Thinkwik
Thinkwik.com
6
Let’s understand the folder structure here. I have renamed app.js and app.css to
MyShoppingApp.js and MyShoppingApp.css as per our project’s name. the component
folder will be comprised of all the independent components which generally does not
rely upon any other component. Container folder acts as a container of any other
component as their child component. For now, we don’t have any need of the container
folder, but following the good coding pattern and futuristic approach, we have kept
Product component inside the container folder. There are 2 higher order components –
Layout and Aux.
Layout.js is generally acting as a higher order component to wrap a different section of
the project within one page. It takes the header and the main content area and wrap
them all together to globally use repeated components without adding them every time.
Aux is a higher order component that simply returns the component which is wrapped
within it. It has been created to avoid any unnecessary use of <div> tag to wrap
complete elements within a component.
Blog Thinkwik
Thinkwik.com
7
Layout.js
Aux.js
For this project, I am using bootstrap v4.0.0 for the design part. Layout component here
is wrapping Header component and Products component. There is a different file
created for the header to use it everywhere across the project without repeating the
same code over time.
Blog Thinkwik
Thinkwik.com
8
Header.js
Blog Thinkwik
Thinkwik.com
9
The Header component above uses Aux component as a wrapper that returns the
complete component without making use of any unnecessary <div> element. It has 2
links, Product, the page we are currently on and `About`, which we will build along the
go when we are dealing with react router.
Products.js
Blog Thinkwik
Thinkwik.com
10
Products component comprises of all our listed products with details and allows us to
add products to our cart. We won’t be implementing any payment gateway for this
course module but we will make use of this component at the time of bringing redux into
action.
Blog Thinkwik
Thinkwik.com
11
Here is how our website looks so far. May not be super beautiful, what things we need
to understand to start with.
Blog Thinkwik
Thinkwik.com
12
Side Notes 
● Since our test project is a very small project, most of the functionalities
implemented here may not be very useful for this project but are quite useful
when working on the large-scale application. What we do here will give you an
idea of how to implement best practices in large-scale applications.
● Making use of functional components is a very good practice. Though we have
not touched anything such so far, we will be implementing it in `About` module
where we will not be needing any lifecycle hook or any need to updating state.
In the second part of this series, we will look on how to work with react router, react
router dom, how to fetch data using axios and will be doing some modification in what
we have created so far.
Follow along with the series and do comment your thoughts or any question that you
may have. So get ready, as we are about to move forward to dive deeper into react’s
core features.
For more details and New, Tech Updates click here
Blog Thinkwik
Ad

Recommended

Reactjs workshop
Reactjs workshop
Ahmed rebai
 
Say Hello to React day2 presentation
Say Hello to React day2 presentation
Smile Gupta
 
React native
React native
NexThoughts Technologies
 
Web components are the future of the web - Take advantage of new web technolo...
Web components are the future of the web - Take advantage of new web technolo...
Marios Fakiolas
 
Web worker in your angular application
Web worker in your angular application
Suresh Patidar
 
Angular 2 vs React. What to chose in 2017?
Angular 2 vs React. What to chose in 2017?
TechMagic
 
introduction to Vue.js 3
introduction to Vue.js 3
ArezooKmn
 
Developing high performance and responsive web apps using web worker
Developing high performance and responsive web apps using web worker
Suresh Patidar
 
Angular 2 - How we got here?
Angular 2 - How we got here?
Marios Fakiolas
 
Muhammad azamuddin introduction-to-reactjs
Muhammad azamuddin introduction-to-reactjs
PHP Indonesia
 
Welcome to IE8 - Integrating Your Site With Internet Explorer 8
Welcome to IE8 - Integrating Your Site With Internet Explorer 8
Lachlan Hardy
 
Vuejs getting-started - Extended Version
Vuejs getting-started - Extended Version
Murat Doğan
 
Angular js
Angular js
Thyda Eng
 
The complete-beginners-guide-to-react dyrr
The complete-beginners-guide-to-react dyrr
AfreenK
 
GWTcon 2015 - Best development practices for GWT web applications
GWTcon 2015 - Best development practices for GWT web applications
Arcbees
 
GWTcon 2015 - Beyond GWT 3.0 Panic
GWTcon 2015 - Beyond GWT 3.0 Panic
Cristiano Costantini
 
Implementing auto complete using JQuery
Implementing auto complete using JQuery
Bhushan Mulmule
 
React Native.pptx (2)
React Native.pptx (2)
Emilio Rodriguez Martinez
 
Rapid Android Development for Hackathon
Rapid Android Development for Hackathon
CodePolitan
 
Internal workshop react-js-mruiz
Internal workshop react-js-mruiz
Miguel Ruiz Rodriguez
 
Angular vs. React
Angular vs. React
OPITZ CONSULTING Deutschland
 
Top 7 Angular Best Practices to Organize Your Angular App
Top 7 Angular Best Practices to Organize Your Angular App
Katy Slemon
 
AngularJS for Beginners
AngularJS for Beginners
Edureka!
 
Basics of Vue.js 2019
Basics of Vue.js 2019
Paul Bele
 
Angular 2 vs React
Angular 2 vs React
Iran Reyes Fleitas
 
Vue.js Getting Started
Vue.js Getting Started
Murat Doğan
 
Up & running with ECMAScript6
Up & running with ECMAScript6
Nir Kaufman
 
The Onion
The Onion
Jörn Zaefferer
 
Getting Started with React, When You’re an Angular Developer
Getting Started with React, When You’re an Angular Developer
Fabrit Global
 
Reactjs notes.pptx for web development- tutorial and theory
Reactjs notes.pptx for web development- tutorial and theory
jobinThomas54
 

More Related Content

What's hot (20)

Angular 2 - How we got here?
Angular 2 - How we got here?
Marios Fakiolas
 
Muhammad azamuddin introduction-to-reactjs
Muhammad azamuddin introduction-to-reactjs
PHP Indonesia
 
Welcome to IE8 - Integrating Your Site With Internet Explorer 8
Welcome to IE8 - Integrating Your Site With Internet Explorer 8
Lachlan Hardy
 
Vuejs getting-started - Extended Version
Vuejs getting-started - Extended Version
Murat Doğan
 
Angular js
Angular js
Thyda Eng
 
The complete-beginners-guide-to-react dyrr
The complete-beginners-guide-to-react dyrr
AfreenK
 
GWTcon 2015 - Best development practices for GWT web applications
GWTcon 2015 - Best development practices for GWT web applications
Arcbees
 
GWTcon 2015 - Beyond GWT 3.0 Panic
GWTcon 2015 - Beyond GWT 3.0 Panic
Cristiano Costantini
 
Implementing auto complete using JQuery
Implementing auto complete using JQuery
Bhushan Mulmule
 
React Native.pptx (2)
React Native.pptx (2)
Emilio Rodriguez Martinez
 
Rapid Android Development for Hackathon
Rapid Android Development for Hackathon
CodePolitan
 
Internal workshop react-js-mruiz
Internal workshop react-js-mruiz
Miguel Ruiz Rodriguez
 
Angular vs. React
Angular vs. React
OPITZ CONSULTING Deutschland
 
Top 7 Angular Best Practices to Organize Your Angular App
Top 7 Angular Best Practices to Organize Your Angular App
Katy Slemon
 
AngularJS for Beginners
AngularJS for Beginners
Edureka!
 
Basics of Vue.js 2019
Basics of Vue.js 2019
Paul Bele
 
Angular 2 vs React
Angular 2 vs React
Iran Reyes Fleitas
 
Vue.js Getting Started
Vue.js Getting Started
Murat Doğan
 
Up & running with ECMAScript6
Up & running with ECMAScript6
Nir Kaufman
 
The Onion
The Onion
Jörn Zaefferer
 
Angular 2 - How we got here?
Angular 2 - How we got here?
Marios Fakiolas
 
Muhammad azamuddin introduction-to-reactjs
Muhammad azamuddin introduction-to-reactjs
PHP Indonesia
 
Welcome to IE8 - Integrating Your Site With Internet Explorer 8
Welcome to IE8 - Integrating Your Site With Internet Explorer 8
Lachlan Hardy
 
Vuejs getting-started - Extended Version
Vuejs getting-started - Extended Version
Murat Doğan
 
The complete-beginners-guide-to-react dyrr
The complete-beginners-guide-to-react dyrr
AfreenK
 
GWTcon 2015 - Best development practices for GWT web applications
GWTcon 2015 - Best development practices for GWT web applications
Arcbees
 
GWTcon 2015 - Beyond GWT 3.0 Panic
GWTcon 2015 - Beyond GWT 3.0 Panic
Cristiano Costantini
 
Implementing auto complete using JQuery
Implementing auto complete using JQuery
Bhushan Mulmule
 
Rapid Android Development for Hackathon
Rapid Android Development for Hackathon
CodePolitan
 
Top 7 Angular Best Practices to Organize Your Angular App
Top 7 Angular Best Practices to Organize Your Angular App
Katy Slemon
 
AngularJS for Beginners
AngularJS for Beginners
Edureka!
 
Basics of Vue.js 2019
Basics of Vue.js 2019
Paul Bele
 
Vue.js Getting Started
Vue.js Getting Started
Murat Doğan
 
Up & running with ECMAScript6
Up & running with ECMAScript6
Nir Kaufman
 

Similar to Learn reactjs, how to code with example and general understanding thinkwik (20)

Getting Started with React, When You’re an Angular Developer
Getting Started with React, When You’re an Angular Developer
Fabrit Global
 
Reactjs notes.pptx for web development- tutorial and theory
Reactjs notes.pptx for web development- tutorial and theory
jobinThomas54
 
Fundamental Concepts of React JS for Beginners.pdf
Fundamental Concepts of React JS for Beginners.pdf
StephieJohn
 
React introduction
React introduction
Kashyap Parmar
 
Mastering react with redux
Mastering react with redux
Gaurav Singh
 
Reactjs workshop (1)
Reactjs workshop (1)
Ahmed rebai
 
Lecture 2 Styling and Layout in React Native.pptx
Lecture 2 Styling and Layout in React Native.pptx
GevitaChinnaiah
 
React JS - A quick introduction tutorial
React JS - A quick introduction tutorial
Mohammed Fazuluddin
 
Fullstack JS Workshop
Fullstack JS Workshop
Muhammad Rizki Rijal
 
Full Stack React Workshop [CSSC x GDSC]
Full Stack React Workshop [CSSC x GDSC]
GDSC UofT Mississauga
 
FRONTEND DEVELOPMENT WITH REACT.JS
FRONTEND DEVELOPMENT WITH REACT.JS
IRJET Journal
 
ReactJs
ReactJs
Sahana Banerjee
 
Learn react-js
Learn react-js
C...L, NESPRESSO, WAFAASSURANCE, SOFRECOM ORANGE
 
Full Stack_Reac web Development and Application
Full Stack_Reac web Development and Application
Jeyarajs7
 
React in Action ( PDFDrive ).pdf
React in Action ( PDFDrive ).pdf
almako2
 
thinking in react slides for students.pptx
thinking in react slides for students.pptx
AneesLarik1
 
React & Flux Workshop
React & Flux Workshop
Christian Lilley
 
React JS; all concepts. Contains React Features, JSX, functional & Class comp...
React JS; all concepts. Contains React Features, JSX, functional & Class comp...
Karmanjay Verma
 
react.pdf
react.pdf
yihunie2
 
0900 learning-react
0900 learning-react
RohitYadav696
 
Getting Started with React, When You’re an Angular Developer
Getting Started with React, When You’re an Angular Developer
Fabrit Global
 
Reactjs notes.pptx for web development- tutorial and theory
Reactjs notes.pptx for web development- tutorial and theory
jobinThomas54
 
Fundamental Concepts of React JS for Beginners.pdf
Fundamental Concepts of React JS for Beginners.pdf
StephieJohn
 
Mastering react with redux
Mastering react with redux
Gaurav Singh
 
Reactjs workshop (1)
Reactjs workshop (1)
Ahmed rebai
 
Lecture 2 Styling and Layout in React Native.pptx
Lecture 2 Styling and Layout in React Native.pptx
GevitaChinnaiah
 
React JS - A quick introduction tutorial
React JS - A quick introduction tutorial
Mohammed Fazuluddin
 
Full Stack React Workshop [CSSC x GDSC]
Full Stack React Workshop [CSSC x GDSC]
GDSC UofT Mississauga
 
FRONTEND DEVELOPMENT WITH REACT.JS
FRONTEND DEVELOPMENT WITH REACT.JS
IRJET Journal
 
Full Stack_Reac web Development and Application
Full Stack_Reac web Development and Application
Jeyarajs7
 
React in Action ( PDFDrive ).pdf
React in Action ( PDFDrive ).pdf
almako2
 
thinking in react slides for students.pptx
thinking in react slides for students.pptx
AneesLarik1
 
React JS; all concepts. Contains React Features, JSX, functional & Class comp...
React JS; all concepts. Contains React Features, JSX, functional & Class comp...
Karmanjay Verma
 
Ad

Recently uploaded (12)

Beyond the Lampshade Woody Allen’s Unlikely Wisdom for Profound Personal Grow...
Beyond the Lampshade Woody Allen’s Unlikely Wisdom for Profound Personal Grow...
shikosham
 
Women_Empowerment_LPU_Presentation.pptx.
Women_Empowerment_LPU_Presentation.pptx.
jinny kaur
 
PERSONAL DEVELOPMENT about relarionships
PERSONAL DEVELOPMENT about relarionships
adeborja
 
Personal Development about Thinking and Emotions
Personal Development about Thinking and Emotions
adeborja
 
Personal Development 3.2.. Metacognition
Personal Development 3.2.. Metacognition
adeborja
 
Maslow’s need of hierarchy of needs.pptx
Maslow’s need of hierarchy of needs.pptx
SheetalVatsa2
 
Personal Development_ Unit 3.1. Relationships
Personal Development_ Unit 3.1. Relationships
adeborja
 
Map Reading & Where to Get Free Maps and Apps.pptx
Map Reading & Where to Get Free Maps and Apps.pptx
Bob Mayer
 
너의 과제는 클라우드에 있어_KTDS_김동현.pptx
너의 과제는 클라우드에 있어_KTDS_김동현.pptx
ssuserf8b8bd1
 
Personal Development_ Unit 3.1. Relationships
Personal Development_ Unit 3.1. Relationships
adeborja
 
Personal Development_ Unit 3.1. Thinking
Personal Development_ Unit 3.1. Thinking
adeborja
 
Title Love Beyond the Screen The Truth About Social Media Relationships (1) f...
Title Love Beyond the Screen The Truth About Social Media Relationships (1) f...
Vikash Gautam
 
Beyond the Lampshade Woody Allen’s Unlikely Wisdom for Profound Personal Grow...
Beyond the Lampshade Woody Allen’s Unlikely Wisdom for Profound Personal Grow...
shikosham
 
Women_Empowerment_LPU_Presentation.pptx.
Women_Empowerment_LPU_Presentation.pptx.
jinny kaur
 
PERSONAL DEVELOPMENT about relarionships
PERSONAL DEVELOPMENT about relarionships
adeborja
 
Personal Development about Thinking and Emotions
Personal Development about Thinking and Emotions
adeborja
 
Personal Development 3.2.. Metacognition
Personal Development 3.2.. Metacognition
adeborja
 
Maslow’s need of hierarchy of needs.pptx
Maslow’s need of hierarchy of needs.pptx
SheetalVatsa2
 
Personal Development_ Unit 3.1. Relationships
Personal Development_ Unit 3.1. Relationships
adeborja
 
Map Reading & Where to Get Free Maps and Apps.pptx
Map Reading & Where to Get Free Maps and Apps.pptx
Bob Mayer
 
너의 과제는 클라우드에 있어_KTDS_김동현.pptx
너의 과제는 클라우드에 있어_KTDS_김동현.pptx
ssuserf8b8bd1
 
Personal Development_ Unit 3.1. Relationships
Personal Development_ Unit 3.1. Relationships
adeborja
 
Personal Development_ Unit 3.1. Thinking
Personal Development_ Unit 3.1. Thinking
adeborja
 
Title Love Beyond the Screen The Truth About Social Media Relationships (1) f...
Title Love Beyond the Screen The Truth About Social Media Relationships (1) f...
Vikash Gautam
 
Ad

Learn reactjs, how to code with example and general understanding thinkwik

  • 1. Thinkwik.com 1 Understanding how to code ReactJS | Basic Setup and General Understanding Written by ​Jalaj Sharma A whole lot of talk about reactJS, redux, better alternative to Angular and more, but what is all that? Have you found a lot of learning material and went through the documentation but are still confused about how to code? Here in this article we will break down all the big terms with reactJS like redux, axios, react router, JSX and more with explanation and how to code with that. For this part of the article, we will focus more on the general setup, understanding how to start, create a basic skeleton with code alongside understanding. For reading this, I believe you have basic understanding of reactJS​ as this course mainly focuses on how to code reactJS, best practices, redux etc with their understanding. Blog Thinkwik
  • 2. Thinkwik.com 2 What is ReactJS? 1 ReactJS is a javascript library created by the Facebook community to create a user interface and mainly focuses on building single page application. Some of the core features of reactJS are: JSX​​: Javascript and XML (JSX) is a simple javascript that lets creation of DOM elements more precisely without making use of HTML. It allows us to use HTML syntax and even old-fashioned javascript for flexibility. Single Way data flow​​: In component’s renderer, immutable values are passed as properties. Components are restricted to modify the properties directly by themselves but they can listen to the callback function. Virtual DOM​​: Virtual DOM is a copy of the real DOM. Virtual DOM manages nodes of DOM elements and checks for changes in any element. If it finds a change in any of the element, it modifies that specific element in the real DOM instead of re-rendering the complete DOM tree. Let’s get our hands dirty and understand things better by writing some code and creating a simple react project. To create a new project, we will use create-react-app, which provides us a complete boilerplate with a configuration of babel and webpack setup and more. Make sure you have npm or any other package manager like yarn installed on your machine as we will be using this for managing our packages. 1 http://blog.thinkwik.com/understanding-how-to-code-reactjs-basic-setup-and-general-understanding/ Blog Thinkwik
  • 3. Thinkwik.com 3 Your my-shopping-app project will now be running in the browser on port 3000. Open the created project in any code editor, I will be using atom for this. Blog Thinkwik
  • 4. Thinkwik.com 4 The above image shows the basic folder structure provided by create-react-app. Now since this is our project, let's modify it and add stuff according to our needs. For this part of our article, we will focus on designing a general workflow with folder structure we might be needing, creating basic components, designing a page and making use of higher order components. You can clone and ​download source code​ for this project and play around with it. Blog Thinkwik
  • 6. Thinkwik.com 6 Let’s understand the folder structure here. I have renamed app.js and app.css to MyShoppingApp.js and MyShoppingApp.css as per our project’s name. the component folder will be comprised of all the independent components which generally does not rely upon any other component. Container folder acts as a container of any other component as their child component. For now, we don’t have any need of the container folder, but following the good coding pattern and futuristic approach, we have kept Product component inside the container folder. There are 2 higher order components – Layout and Aux. Layout.js is generally acting as a higher order component to wrap a different section of the project within one page. It takes the header and the main content area and wrap them all together to globally use repeated components without adding them every time. Aux is a higher order component that simply returns the component which is wrapped within it. It has been created to avoid any unnecessary use of <div> tag to wrap complete elements within a component. Blog Thinkwik
  • 7. Thinkwik.com 7 Layout.js Aux.js For this project, I am using bootstrap v4.0.0 for the design part. Layout component here is wrapping Header component and Products component. There is a different file created for the header to use it everywhere across the project without repeating the same code over time. Blog Thinkwik
  • 9. Thinkwik.com 9 The Header component above uses Aux component as a wrapper that returns the complete component without making use of any unnecessary <div> element. It has 2 links, Product, the page we are currently on and `About`, which we will build along the go when we are dealing with react router. Products.js Blog Thinkwik
  • 10. Thinkwik.com 10 Products component comprises of all our listed products with details and allows us to add products to our cart. We won’t be implementing any payment gateway for this course module but we will make use of this component at the time of bringing redux into action. Blog Thinkwik
  • 11. Thinkwik.com 11 Here is how our website looks so far. May not be super beautiful, what things we need to understand to start with. Blog Thinkwik
  • 12. Thinkwik.com 12 Side Notes  ● Since our test project is a very small project, most of the functionalities implemented here may not be very useful for this project but are quite useful when working on the large-scale application. What we do here will give you an idea of how to implement best practices in large-scale applications. ● Making use of functional components is a very good practice. Though we have not touched anything such so far, we will be implementing it in `About` module where we will not be needing any lifecycle hook or any need to updating state. In the second part of this series, we will look on how to work with react router, react router dom, how to fetch data using axios and will be doing some modification in what we have created so far. Follow along with the series and do comment your thoughts or any question that you may have. So get ready, as we are about to move forward to dive deeper into react’s core features. For more details and New, Tech Updates click here Blog Thinkwik