Best of Next.jsApril 2024

  1. 1
    Article
    Avatar of nextNext.js·2y

    Next.js 14.2

    Next.js 14.2 includes development, production, and caching improvements. It introduces Turbopack for Development, which significantly improves local development performance. There are also enhancements in build memory usage, CSS optimization, caching, and error DX. The release prepares for the integration of React 19 and includes other improvements and documentation updates.

  2. 2
    Article
    Avatar of freecodecampfreeCodeCamp·2y

    What's the difference between React and Next.js?

    Learn the difference between React and Next.js, understand their use cases, and how they impact web application development.

  3. 3
    Article
    Avatar of communityCommunity Picks·2y

    Next.js: The Future Of React?

    Next.js is a React framework for building full-stack web applications. It provides extra functionalities on top of React.js, including server-side rendering (SSR) and improved SEO. Next.js offers benefits such as improved performance, enhanced SEO, and easy caching of rendered data. In comparison to React.js, Next.js solves problems related to search engine indexing and website previews. It is a valuable addition to the tech stack for those who prioritize SEO and performance. As for the future of React.js and frontend development, Next.js offers powerful features and tools that contribute to its growing popularity.

  4. 4
    Video
    Avatar of communityCommunity Picks·2y

    Make your Next.js app Awesome with THIS UI Library!

    Learn how to implement various components using the Aity UI library and enhance the appearance of your Next.js app.

  5. 5
    Article
    Avatar of lobstersLobsters·2y

    Next.js App Router Routing patterns you should know

    Learn about different routing patterns in Next.js App Router, including defining a route, creating dynamic routes, using Catch All and Optional Catch All Routes, nested layouts, parallel routes, intercepting routes, and dynamic render.

  6. 6
    Article
    Avatar of cerbosCerbos·2y

    A Complete Guide to Next.js Authorization

    Learn about authorization in Next.js using Cerbos, an open-source authorization project. Understand how authorization works, how to integrate it into a Next.js application, and implement attribute-based access control (ABAC) and role-based access control (RBAC).

  7. 7
    Video
    Avatar of t3dotggTheo - t3․gg·2y

    From 0 to Production - The Modern React Tutorial (RSCs, Next.js, Shadui, Drizzle, TS and more)

    This post is a production-ready React tutorial that showcases how to build production apps using the T3 stack, Next.js, and various other technologies. It also includes recommended hosting solutions and introduces the concept of server components in Next.js.

  8. 8
    Article
    Avatar of logrocketLogRocket·2y

    Implementing infinite scroll in Next.js with Server Actions

    Learn how to implement infinite scroll in Next.js using Server Actions, fetching initial data on the server and improving perceived performance. External libraries such as SWR or Tanstack Query are no longer required. Use the TypiCode dummy REST API to fetch blog posts and organize data models effectively. Reusable API URLs and error handling can be implemented with utility functions. Create UI components to display the fetched data, and enhance the app with infinite scrolling using the react-intersection-observer library or the Intersection Observer API. Debugging Next.js applications can be made easier with tools like LogRocket.

  9. 9
    Article
    Avatar of communityCommunity Picks·2y

    How to build: a v0.dev clone (Next.js, GPT4 & CopilotKit)

    Learn how to build a clone of Vercel's V0.dev using Next.js, GPT4, and CopilotKit. The article covers integrating CopilotKit into your React app, the requirements for building a v0 clone, and what CopilotKit is.

  10. 10
    Article
    Avatar of freecodecampfreeCodeCamp·2y

    Create a Google Photos Clone with Next.js and Cloudinary

    Learn how to create a powerful photo management app using Next.js and Cloudinary. The course covers efficient image handling, advanced features with Cloudinary and Tanstack Query, UI enhancements, AI integrations, creative image manipulation, and optimizing application performance.

  11. 11
    Video
    Avatar of communityCommunity Picks·2y

    Prisma, tRPC & Next.js: Ultimate Fullstack Template

    Learn how to create a full stack template using Prisma, tRPC, and Next.js. Discover good practices for full stack applications and the benefits of using pnpm.

  12. 12
    Article
    Avatar of freecodecampfreeCodeCamp·2y

    How to Build a TODO App from Scratch with React.js

    Learn how to build a TODO app from scratch with React.js. The tutorial covers the steps to set up a React app with Next.js, creating different components, adding new TODOs, marking TODOs as completed, editing and deleting TODOs, and persisting the TODO data in localStorage.

  13. 13
    Video
    Avatar of communityCommunity Picks·2y

    Whole Admin Page in just 5 minutes | Next.js Shadcn (Lift Mode)

    Learn how to build a fully functional admin web page in just 5 minutes using Next.js and Shadcn's lift mode feature.

  14. 14
    Article
    Avatar of robinwieruchRobin Wieruch·2y

    Exploring Authentication in Next.js

    This post explores the process of implementing authentication in Next.js using Next's App Router, React Server Components (RSC), and Server Actions. It covers the creation of sign-up and sign-in pages, as well as the use of Lucia Auth for session management. The post also discusses the use of Prisma for database access and provides guidance on protecting routes and displaying different navigation items based on the user's authentication status.

  15. 15
    Article
    Avatar of communityCommunity Picks·2y

    Global progress in Next.js

    The post discusses the new App Router in Next.js, the use of a custom Link component to show a progress bar during page navigations, and the use of the useProgress Hook to control the progress state. It also mentions the benefits of using React Transitions and the framework-agnostic nature of the components.

  16. 16
    Video
    Avatar of programmersarealsohumanProgrammers are also human·2y

    Interview with Senior JS Developer 2024 [NEW]

    Comparison between T3 and T4 in terms of libraries used and advantages of using T4.

  17. 17
    Article
    Avatar of builderiobuilder.io·2y

    Server-only Code in Next.js App Router

    The post discusses the importance of distinguishing between server-only and client-side code in a Next.js application. It covers how to define server-only code and introduces the server-only package as a way to prevent the inclusion of such code in the client bundle.

  18. 18
    Video
    Avatar of communityCommunity Picks·2y

    How To Build A Next.js Coupon System Like A Senior Developer

    Learn how to build a custom coupon system in Next.js and integrate it with any payment provider, such as Stripe. This tutorial covers database modifications, admin pages, and implementation of discount codes.