Next.js is a basically javascript framework build with react js, webpack, and babel. Next.js help the developer to create a static generation (SSG) and server-side rendering (SSR) website with easy ways.
Next.js is built by ZEIT. But recently 1 Month ago ZEIT purchase by Vercel. That means ZEIT is now Vercel.

Next.js helping to optimize your website. Recently lots of developers working with Next.js.
Note:
Next.js, Nuxt.js, and Nest.js are different frameworks || library.
Feature:
Next.js Feature help to developer solve the major problem in web development.
- Pre-Rendering Support SSG And SSR
- CSS-in-JS
- Zero Configuration
- Ready for Production
Installation:
install next in your machine with two ways
- Manual Setup
- Automatically Setup
Manual Setup:
Install next
, react
and react-dom
in your project:
npm install next react react-dom
Open package.json
and add the following scripts
:
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start"
}
After Installation run script use this Cmd
npm run dev
Now Visit on this URL in your browser http://localhost:3000/. your webserver Now Work 😃
Automatically Setup:
We highly recommend a beginner person to create a new Next.js app using this command create-next-app
, this cmd Setup everything automatically for you.
npm init next-app
# or
yarn create next-app
After the installation is complete.
cd path // make sure you same folder other wish no use
npm run dev // that cmd open create server and run your default browser http://localhost:3000/
Start the development server. After Try editing pages/index.js
and see the result on your browser.
Note:
Index.js default next.js router path.
Next.js Youtube Course:
On youtube, not much big like 1+ hours course video like That. But some YouTuber great work in Next.js.
1. Bruno Antunes:
Bruno Antunes provides to great path of Next.js. That person creates a lot of tutorials on it make sure you watch it.
Youtube PlayList:
2. Imran Sayed — Codeytek Academy:
Imran Sayed a Great developer my opinion. Imran stayed, next.js course provide you to a learning path in next.js and tell you about next.js || Wordpress API|| apollo || graphql.
Youtube Playlist:
Note:
Tell me about other Youtuber work with Next.js. than me mention on my blog Post #Comment Now.
Website:



Read My Other Blog Medium:


Conclusion:
My Opinion next.js. Great Library To help the developer create server-side rendering (SSR) with one function || method in next.js. My big surprise When I start work with Wordpress and graphql. Next.js Provide More stable as compare to other React.js frameworks.
Now My first choice Nextjs in frontend-developer
Contact me
- https://www.facebook.com/officialrajdeepsingh/
- https://www.facebook.com/groups/JavaScriptcode/
- https://www.facebook.com/groups/pythoncodejoin/
- officialrajdeepsingh@gmail.com
Thanks for Reading 😆
