Skip to main content

Next.js

Next.js is a backend framework for your React applications.

Why should I use it?

Pairing Next.js with Vercel makes developing and deploying web apps easier than ever before. Their extremely generous free-tier and super intuitive interface provides a point and click solution to deploy your site.

Get Static/Server Props

A key feature of Next.js is its data fetching capabilities. We highly recommend reading through the official documentation to understand how to use each method and how they differ. getServerSideProps is generally discouraged unless there is a good reason for it, due to the fact that it is a blocking call and will slow down your site. Incremental Static Regeneration is a great alternative to getServerSideProps when the data is dynamic and can be fetched incrementally.

Useful Resources

ResourceLink
Next.js Documentationhttps://nextjs.org/docs
Next.js GitHubhttps://github.com/vercel/next.js
Next.js Bloghttps://nextjs.org/blog
Next.js Discordhttps://nextjs.org/discord
Next.js Twitterhttps://twitter.com/nextjs
Vercel/Next.js YouTube Channelhttps://www.youtube.com/c/VercelHQ