SlideShare a Scribd company logo
Getting started with Next.js
Feb 27, 2020
Gokhan Sari
@hgokhansari
WebGazer
A web application!
component
/kəmˈpoʊ.nənt/
a part that combines with other parts to form
something bigger
React!
Starting a React project
Webpack
Babel
Routing
Going to production
Static export
Code splitting
Server-side rendering
React doesn’t have these.
And that’s a good thing!
Getting started with Next.js
Starting a project
(from scratch)
1. yarn init best-app-ever
2. yarn add --dev webpack
3. Start to read about babel and presets
4. Understand the history of javascript
5. Set up webpack loaders for images
6. Set up hot code reloading for dev environment
7. ….
Starting a project
(Next.js)
$ yarn create next-app
Starting a project
(Next.js)
● Batteries included
● Sane defaults
● Fully extensible
● Ready for production
Server-Side Rendering
(SSR)
and
Client-Side Rendering
(CSR)
Client-Side Rendering (CSR)
Server-Side Rendering (SSR)
First page is ready to render
HTML, like good old days
And then we have a regular
single-page application
Client-Side Rendering (CSR)
Getting started with Next.js
Server-Side Rendering (SSR)
Getting started with Next.js
CSR SSR
Server-Side Rendering (SSR)
■ Search engine optimization
■ Social media optimization
■ User experience
Code splitting
Code splitting
bundle.js
The user doesn’t need all of your 19 MB bundle.js in
order to see your ‘about’ page.
Code splitting
It breaks javascript bundle into pieces and loads only when
needed.
users.js
x.js
products.js
y.js
z.js
common.js
users.js
products.js
Code splitting
Next.js does automatic code splitting and it is based on
the pages in your app.
“For example, if one of your modules is used at-least in half of
your pages, then it moves into the main JavaScript bundle. If
not, that module stays inside the page's bundle.”
Static exporting
● Marketing websites
● Documentations
● Blogs
To sum up
● Boilerplate-free
● Featureful by default
● Server-side rendering
● Code splitting
● Static exporting
● UNOPINIONATED
References
● Cambridge dictionary (https://dictionary.cambridge.org)
● React Documentation (https://reactjs.org/docs/)
● Next.js Documentation (https://nextjs.org/docs/)
● Reddit - /r/ProgrammerHumor
(https://www.reddit.com/r/ProgrammerHumor/)
Getting started with Next.js
Ad

Recommended

NextJS - Online Summit for Frontend Developers September 2020
NextJS - Online Summit for Frontend Developers September 2020
Milad Heydari
 
Nextjs13.pptx
Nextjs13.pptx
DivyanshGupta922023
 
Introduction to React JS
Introduction to React JS
Arnold Asllani
 
NextJS, A JavaScript Framework for building next generation SPA
NextJS, A JavaScript Framework for building next generation SPA
Pramendra Gupta
 
An introduction to React.js
An introduction to React.js
Emanuele DelBono
 
Automation testing strategy, approach & planning
Automation testing strategy, approach & planning
SivaprasanthRentala1975
 
Web api
Web api
Sudhakar Sharma
 
PostgreSQL Database Slides
PostgreSQL Database Slides
metsarin
 
Next.js vs React | what to choose for frontend development_
Next.js vs React | what to choose for frontend development_
ForceBolt
 
Next.js Introduction
Next.js Introduction
Saray Chak
 
ReactJS presentation
ReactJS presentation
Thanh Tuong
 
NEXT.JS
NEXT.JS
Binumon Joseph
 
Introduction to ReactJS
Introduction to ReactJS
Knoldus Inc.
 
Server side rendering review
Server side rendering review
Vladyslav Morzhanov
 
Universal React apps in Next.js
Universal React apps in Next.js
🐕 Łukasz Ostrowski
 
Reactjs
Reactjs
Neha Sharma
 
Express node js
Express node js
Yashprit Singh
 
React-JS.pptx
React-JS.pptx
AnmolPandita7
 
React js
React js
Rajesh Kolla
 
Basics of VueJS
Basics of VueJS
Squash Apps Pvt Ltd
 
Build RESTful API Using Express JS
Build RESTful API Using Express JS
Cakra Danu Sedayu
 
What Is Express JS?
What Is Express JS?
Simplilearn
 
React js programming concept
React js programming concept
Tariqul islam
 
Spring Boot
Spring Boot
HongSeong Jeon
 
Learn react-js
Learn react-js
C...L, NESPRESSO, WAFAASSURANCE, SOFRECOM ORANGE
 
Getting started with Next.js - IM Tech Meetup - Oct 2022.pptx
Getting started with Next.js - IM Tech Meetup - Oct 2022.pptx
Ilesh Mistry
 
Intro to React
Intro to React
Justin Reock
 
NodeJS - Server Side JS
NodeJS - Server Side JS
Ganesh Kondal
 
Installing Webpack with React JS from Scratch.pdf
Installing Webpack with React JS from Scratch.pdf
Sufalam Technologies
 
Spring Update | July 2023
Spring Update | July 2023
VMware Tanzu
 

More Related Content

What's hot (20)

Next.js vs React | what to choose for frontend development_
Next.js vs React | what to choose for frontend development_
ForceBolt
 
Next.js Introduction
Next.js Introduction
Saray Chak
 
ReactJS presentation
ReactJS presentation
Thanh Tuong
 
NEXT.JS
NEXT.JS
Binumon Joseph
 
Introduction to ReactJS
Introduction to ReactJS
Knoldus Inc.
 
Server side rendering review
Server side rendering review
Vladyslav Morzhanov
 
Universal React apps in Next.js
Universal React apps in Next.js
🐕 Łukasz Ostrowski
 
Reactjs
Reactjs
Neha Sharma
 
Express node js
Express node js
Yashprit Singh
 
React-JS.pptx
React-JS.pptx
AnmolPandita7
 
React js
React js
Rajesh Kolla
 
Basics of VueJS
Basics of VueJS
Squash Apps Pvt Ltd
 
Build RESTful API Using Express JS
Build RESTful API Using Express JS
Cakra Danu Sedayu
 
What Is Express JS?
What Is Express JS?
Simplilearn
 
React js programming concept
React js programming concept
Tariqul islam
 
Spring Boot
Spring Boot
HongSeong Jeon
 
Learn react-js
Learn react-js
C...L, NESPRESSO, WAFAASSURANCE, SOFRECOM ORANGE
 
Getting started with Next.js - IM Tech Meetup - Oct 2022.pptx
Getting started with Next.js - IM Tech Meetup - Oct 2022.pptx
Ilesh Mistry
 
Intro to React
Intro to React
Justin Reock
 
NodeJS - Server Side JS
NodeJS - Server Side JS
Ganesh Kondal
 

Similar to Getting started with Next.js (20)

Installing Webpack with React JS from Scratch.pdf
Installing Webpack with React JS from Scratch.pdf
Sufalam Technologies
 
Spring Update | July 2023
Spring Update | July 2023
VMware Tanzu
 
Isomorphic React Applications: Performance And Scalability
Isomorphic React Applications: Performance And Scalability
Denis Izmaylov
 
Webpack/Parcel: What’s Happening Behind the React App?
Webpack/Parcel: What’s Happening Behind the React App?
Talentica Software
 
Top React Static Site Generators for 2022.pdf
Top React Static Site Generators for 2022.pdf
Katy Slemon
 
Using the WordPress REST API and Gatsby.js
Using the WordPress REST API and Gatsby.js
Indigo Tree Digital
 
Reactjs
Reactjs
Mallikarjuna G D
 
Atomic Design with Next.js
Atomic Design with Next.js
Patrick Smith
 
JSFoo-2017 Takeaways
JSFoo-2017 Takeaways
Mir Ali
 
Introduction to meteor
Introduction to meteor
NodeXperts
 
AbhishekMalik_CV_08jan2019
AbhishekMalik_CV_08jan2019
Abhishek Malik
 
Abhishek malik_cv_01jan2019
Abhishek malik_cv_01jan2019
Abhishek Malik
 
What is Server-side Rendering? How to Render Your React App on the Server-sid...
What is Server-side Rendering? How to Render Your React App on the Server-sid...
Shelly Megan
 
Top 8 react static site generators for 2020
Top 8 react static site generators for 2020
Katy Slemon
 
AbhishekMalik_CV_30Dec2018
AbhishekMalik_CV_30Dec2018
Abhishek Malik
 
GraphQL Bangkok Meetup 6.0
GraphQL Bangkok Meetup 6.0
Tobias Meixner
 
[English version] JavaFX and Web Integration
[English version] JavaFX and Web Integration
Kazuchika Sekiya
 
Full Stack React Workshop [CSSC x GDSC]
Full Stack React Workshop [CSSC x GDSC]
GDSC UofT Mississauga
 
Angular (v2 and up) - Morning to understand - Linagora
Angular (v2 and up) - Morning to understand - Linagora
LINAGORA
 
Frontend Development Bootcamp - React [Online & Offline] In Bangla
Frontend Development Bootcamp - React [Online & Offline] In Bangla
Stack Learner
 
Installing Webpack with React JS from Scratch.pdf
Installing Webpack with React JS from Scratch.pdf
Sufalam Technologies
 
Spring Update | July 2023
Spring Update | July 2023
VMware Tanzu
 
Isomorphic React Applications: Performance And Scalability
Isomorphic React Applications: Performance And Scalability
Denis Izmaylov
 
Webpack/Parcel: What’s Happening Behind the React App?
Webpack/Parcel: What’s Happening Behind the React App?
Talentica Software
 
Top React Static Site Generators for 2022.pdf
Top React Static Site Generators for 2022.pdf
Katy Slemon
 
Using the WordPress REST API and Gatsby.js
Using the WordPress REST API and Gatsby.js
Indigo Tree Digital
 
Atomic Design with Next.js
Atomic Design with Next.js
Patrick Smith
 
JSFoo-2017 Takeaways
JSFoo-2017 Takeaways
Mir Ali
 
Introduction to meteor
Introduction to meteor
NodeXperts
 
AbhishekMalik_CV_08jan2019
AbhishekMalik_CV_08jan2019
Abhishek Malik
 
Abhishek malik_cv_01jan2019
Abhishek malik_cv_01jan2019
Abhishek Malik
 
What is Server-side Rendering? How to Render Your React App on the Server-sid...
What is Server-side Rendering? How to Render Your React App on the Server-sid...
Shelly Megan
 
Top 8 react static site generators for 2020
Top 8 react static site generators for 2020
Katy Slemon
 
AbhishekMalik_CV_30Dec2018
AbhishekMalik_CV_30Dec2018
Abhishek Malik
 
GraphQL Bangkok Meetup 6.0
GraphQL Bangkok Meetup 6.0
Tobias Meixner
 
[English version] JavaFX and Web Integration
[English version] JavaFX and Web Integration
Kazuchika Sekiya
 
Full Stack React Workshop [CSSC x GDSC]
Full Stack React Workshop [CSSC x GDSC]
GDSC UofT Mississauga
 
Angular (v2 and up) - Morning to understand - Linagora
Angular (v2 and up) - Morning to understand - Linagora
LINAGORA
 
Frontend Development Bootcamp - React [Online & Offline] In Bangla
Frontend Development Bootcamp - React [Online & Offline] In Bangla
Stack Learner
 
Ad

Recently uploaded (20)

“Addressing Evolving AI Model Challenges Through Memory and Storage,” a Prese...
“Addressing Evolving AI Model Challenges Through Memory and Storage,” a Prese...
Edge AI and Vision Alliance
 
No-Code Workflows for CAD & 3D Data: Scaling AI-Driven Infrastructure
No-Code Workflows for CAD & 3D Data: Scaling AI-Driven Infrastructure
Safe Software
 
Crypto Super 500 - 14th Report - June2025.pdf
Crypto Super 500 - 14th Report - June2025.pdf
Stephen Perrenod
 
Murdledescargadarkweb.pdfvolumen1 100 elementary
Murdledescargadarkweb.pdfvolumen1 100 elementary
JorgeSemperteguiMont
 
Raman Bhaumik - Passionate Tech Enthusiast
Raman Bhaumik - Passionate Tech Enthusiast
Raman Bhaumik
 
AI VIDEO MAGAZINE - June 2025 - r/aivideo
AI VIDEO MAGAZINE - June 2025 - r/aivideo
1pcity Studios, Inc
 
SAP Modernization Strategies for a Successful S/4HANA Journey.pdf
SAP Modernization Strategies for a Successful S/4HANA Journey.pdf
Precisely
 
“Key Requirements to Successfully Implement Generative AI in Edge Devices—Opt...
“Key Requirements to Successfully Implement Generative AI in Edge Devices—Opt...
Edge AI and Vision Alliance
 
FIDO Seminar: Targeting Trust: The Future of Identity in the Workforce.pptx
FIDO Seminar: Targeting Trust: The Future of Identity in the Workforce.pptx
FIDO Alliance
 
FIDO Seminar: Evolving Landscape of Post-Quantum Cryptography.pptx
FIDO Seminar: Evolving Landscape of Post-Quantum Cryptography.pptx
FIDO Alliance
 
Securing Account Lifecycles in the Age of Deepfakes.pptx
Securing Account Lifecycles in the Age of Deepfakes.pptx
FIDO Alliance
 
Kubernetes Security Act Now Before It’s Too Late
Kubernetes Security Act Now Before It’s Too Late
Michael Furman
 
“Why It’s Critical to Have an Integrated Development Methodology for Edge AI,...
“Why It’s Critical to Have an Integrated Development Methodology for Edge AI,...
Edge AI and Vision Alliance
 
Providing an OGC API Processes REST Interface for FME Flow
Providing an OGC API Processes REST Interface for FME Flow
Safe Software
 
Tech-ASan: Two-stage check for Address Sanitizer - Yixuan Cao.pdf
Tech-ASan: Two-stage check for Address Sanitizer - Yixuan Cao.pdf
caoyixuan2019
 
Mastering AI Workflows with FME - Peak of Data & AI 2025
Mastering AI Workflows with FME - Peak of Data & AI 2025
Safe Software
 
vertical-cnc-processing-centers-drillteq-v-200-en.pdf
vertical-cnc-processing-centers-drillteq-v-200-en.pdf
AmirStern2
 
Edge-banding-machines-edgeteq-s-200-en-.pdf
Edge-banding-machines-edgeteq-s-200-en-.pdf
AmirStern2
 
Reducing Conflicts and Increasing Safety Along the Cycling Networks of East-F...
Reducing Conflicts and Increasing Safety Along the Cycling Networks of East-F...
Safe Software
 
AudGram Review: Build Visually Appealing, AI-Enhanced Audiograms to Engage Yo...
AudGram Review: Build Visually Appealing, AI-Enhanced Audiograms to Engage Yo...
SOFTTECHHUB
 
“Addressing Evolving AI Model Challenges Through Memory and Storage,” a Prese...
“Addressing Evolving AI Model Challenges Through Memory and Storage,” a Prese...
Edge AI and Vision Alliance
 
No-Code Workflows for CAD & 3D Data: Scaling AI-Driven Infrastructure
No-Code Workflows for CAD & 3D Data: Scaling AI-Driven Infrastructure
Safe Software
 
Crypto Super 500 - 14th Report - June2025.pdf
Crypto Super 500 - 14th Report - June2025.pdf
Stephen Perrenod
 
Murdledescargadarkweb.pdfvolumen1 100 elementary
Murdledescargadarkweb.pdfvolumen1 100 elementary
JorgeSemperteguiMont
 
Raman Bhaumik - Passionate Tech Enthusiast
Raman Bhaumik - Passionate Tech Enthusiast
Raman Bhaumik
 
AI VIDEO MAGAZINE - June 2025 - r/aivideo
AI VIDEO MAGAZINE - June 2025 - r/aivideo
1pcity Studios, Inc
 
SAP Modernization Strategies for a Successful S/4HANA Journey.pdf
SAP Modernization Strategies for a Successful S/4HANA Journey.pdf
Precisely
 
“Key Requirements to Successfully Implement Generative AI in Edge Devices—Opt...
“Key Requirements to Successfully Implement Generative AI in Edge Devices—Opt...
Edge AI and Vision Alliance
 
FIDO Seminar: Targeting Trust: The Future of Identity in the Workforce.pptx
FIDO Seminar: Targeting Trust: The Future of Identity in the Workforce.pptx
FIDO Alliance
 
FIDO Seminar: Evolving Landscape of Post-Quantum Cryptography.pptx
FIDO Seminar: Evolving Landscape of Post-Quantum Cryptography.pptx
FIDO Alliance
 
Securing Account Lifecycles in the Age of Deepfakes.pptx
Securing Account Lifecycles in the Age of Deepfakes.pptx
FIDO Alliance
 
Kubernetes Security Act Now Before It’s Too Late
Kubernetes Security Act Now Before It’s Too Late
Michael Furman
 
“Why It’s Critical to Have an Integrated Development Methodology for Edge AI,...
“Why It’s Critical to Have an Integrated Development Methodology for Edge AI,...
Edge AI and Vision Alliance
 
Providing an OGC API Processes REST Interface for FME Flow
Providing an OGC API Processes REST Interface for FME Flow
Safe Software
 
Tech-ASan: Two-stage check for Address Sanitizer - Yixuan Cao.pdf
Tech-ASan: Two-stage check for Address Sanitizer - Yixuan Cao.pdf
caoyixuan2019
 
Mastering AI Workflows with FME - Peak of Data & AI 2025
Mastering AI Workflows with FME - Peak of Data & AI 2025
Safe Software
 
vertical-cnc-processing-centers-drillteq-v-200-en.pdf
vertical-cnc-processing-centers-drillteq-v-200-en.pdf
AmirStern2
 
Edge-banding-machines-edgeteq-s-200-en-.pdf
Edge-banding-machines-edgeteq-s-200-en-.pdf
AmirStern2
 
Reducing Conflicts and Increasing Safety Along the Cycling Networks of East-F...
Reducing Conflicts and Increasing Safety Along the Cycling Networks of East-F...
Safe Software
 
AudGram Review: Build Visually Appealing, AI-Enhanced Audiograms to Engage Yo...
AudGram Review: Build Visually Appealing, AI-Enhanced Audiograms to Engage Yo...
SOFTTECHHUB
 
Ad

Getting started with Next.js