Next.js Flashcards

Learn Next.js basics and advance concepts

1
Q

Describe the differences between SSR, SSG, and client-side rendering (CSR) in Next.js.

A

SSR (Server-Side Rendering) in Next.js means the HTML for a page is generated on the server for each request. This is useful for dynamic content that changes frequently.

SSG (Static Site Generation) pre-renders pages at build time, creating static HTML files. These files can be served quickly since they’re generated ahead of time, making SSG ideal for pages with content that doesn’t change often.

Client-Side Rendering (CSR) loads a minimal HTML shell and uses JavaScript to render content on the client side after the initial load. CSR is great for highly interactive applications where the initial content isn’t SEO-critical.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you implement dynamic routing in Next.js?

A

In Next.js, you can implement dynamic routing by using the file name conventions inside the pages directory. You create a file with square brackets to indicate a dynamic segment.

For example, if you want a route that catches a dynamic id, you can make a file named [id].js inside pages/posts/. This way, /posts/1 or /posts/some-slug will point to that file.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the next.config.js file, and what are some common configurations?

A

The next.config.js file in a Next.js project is used to customize the default configuration settings of your Next.js application. It allows you to do things like set environment variables, customize webpack configurations, set up redirects and rewrites, and enable experimental features. For example, you might use it to set up support for CSS modules or integrate with a CDN.

Some common configurations include setting up custom headers, enabling image optimization settings, and configuring internationalization (i18n) settings. It’s quite powerful and flexible, making it an essential part of optimizing and configuring your Next.js app to suit your specific needs.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How does Next.js handle routing out of the box?

A

Next.js uses a file-based routing system, which is super convenient. You simply create a file within the pages directory, and Next.js automatically creates a route based on the file name. For instance, if you create a file called about.js in the pages directory, it automatically sets up a route at /about.

Dynamic routing is also straightforward in Next.js. You can create dynamic routes by using square brackets in the file name. For example, a file named [id].js will match any route that has a dynamic segment, like /product/1, /product/2, etc., and you can access that dynamic part in your code using the useRouter() hook from next/router.

This method makes setting up and understanding routes very intuitive because you spend less time configuring and more time building your app.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is Next.js middleware and how is it used?

A

Next.js middleware allows you to run code before a request is completed, acting as a bridge that can intercept requests and responses. It’s like having a mini layer where you can handle things like authentication, logging, or modifying the request and response objects before they hit your main handler or get sent back to the client.

You can create a middleware by adding a middleware.js file in the pages or API folder. In this file, you can define a function that receives req and res objects. You can use this function to execute custom logic, such as checking if a user is logged in before allowing access to certain routes. It’s a powerful tool for managing behavior across multiple pages without duplicating code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

How do you handle errors and error pages in Next.js?

A

In Next.js, error handling can be managed both globally and at the page level. If you want a custom error page for specific HTTP error codes like 404 or 500, you can create 404.js or 500.js files inside the /pages directory. These files will automatically be used by Next.js to render the appropriate error pages.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is dynamic imports in Next.js?

A

Dynamic imports in Next.js allow you to load JavaScript modules, including React components, on demand rather than at initial page load. This can be super useful for improving the performance of your application by reducing the initial bundle size. You use the import() function to dynamically load the module when it’s needed, which can help with things like code splitting. Next.js even has a special next/dynamic module that provides more advanced features like server-side rendering support and loading states for dynamic imports.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How does Next.js handle CSS and styling?

A

Next.js offers a few different ways to handle CSS and styling. One approach is using traditional CSS files, which you can import directly into your components. Next.js also supports CSS Modules, which scope styles locally by default to avoid clashes.

Additionally, Next.js has built-in support for styled-jsx, allowing you to write scoped CSS directly in your JavaScript and TypeScript files using template literals. If you’re into CSS-in-JS, you can also use popular libraries like styled-components or emotion by installing the necessary packages and adding the required configurations. So, you have a lot of flexibility depending on your preferences and the needs of your project.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Explain the concept of server-side rendering (SSR) in Next.js.

A

Server-side rendering (SSR) in Next.js involves rendering your web pages on the server rather than in the browser. This means that the HTML for your web page is generated on the web server, making it quicker for the client to load and display the content. Next.js handles SSR pretty efficiently: you can export an async function called getServerSideProps() from your page, allowing you to fetch data at request time and pass it to your page component. This approach improves SEO and performance, especially for content-heavy websites or pages that require up-to-date data for each request.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How does static site generation (SSG) work in Next.js?

A

In Next.js, static site generation (SSG) involves pre-rendering pages at build time. It generates HTML for each page and can include data-fetching methods like getStaticProps() which retrieve and pass data to the page component. This means the HTML is generated once and then reused for every request, leading to faster load times and improved performance. You choose SSG when you have pages that can be rendered ahead of time and do not need to be updated frequently.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Explain the role of the Link component in Next.js.

A

The Link component in Next.js is used for client-side navigation between pages of the app. Instead of triggering a full page reload, it leverages the power of the Next.js router to perform navigation dynamically, resulting in faster transitions. You wrap your anchor tag with Link, providing the href attribute to indicate the path you want to navigate to, like this:

```jsx import Link from ‘next/link’;

About Us ```

This setup preserves state, reduces load times, and provides a smoother user experience because it fetches only the necessary data to display the next page, rather than reloading the entire page from the server.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly