Skip to content

Commit 2b877b4

Browse files
committed
Add nextjs interview questions
1 parent bd63e11 commit 2b877b4

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,7 @@
270270
|254| [What are the limitations with HOCs?](#what-are-the-limitations-with-hocs)|
271271
|255| [How to debug forwardRefs in DevTools?](#how-to-debug-forwardrefs-in-devtools)|
272272
|256| [When component props defaults to true?](#when-component-props-defaults-to-true)|
273+
|257| [What is NextJS and major features of it?](#what-is-nextjs-and-major-features-of-it)|
273274

274275
## Core React
275276

@@ -4308,3 +4309,11 @@
43084309
<MyInput autocomplete={true} />
43094310
```
43104311
**Note:** It is not recommend using this approach because it can be confused with the ES6 object shorthand (example, {name} which is short for {name: name})
4312+
257. ### What is NextJS and major features of it?
4313+
Next.js is a popular and lightweight framework for static and server‑rendered applications built with React. It also provides styling and routing solutions. Below are the major features provided by NextJS,
4314+
1. Server-rendered by default
4315+
2. Automatic code splitting for faster page loads
4316+
3. Simple client-side routing (page based)
4317+
4. Webpack-based dev environment which supports (HMR)
4318+
5. Able to implement with Express or any other Node.js HTTP server
4319+
6. Customizable with your own Babel and Webpack configurations

0 commit comments

Comments
 (0)