DEV Community

Cover image for ⚡ Introduction to Next.js
Marcos Mendes
Marcos Mendes

Posted on • Edited on

5

⚡ Introduction to Next.js

What is Next.js ?

Next.js is a flexible web framework built on React.js that provides a lot of functionality to create high-performance applications.

More about Next.js

Next.js offers a better developer experience, with several features you need to take your project to production:

  • Hybrid rendering (static and server)
  • TypeScript support
  • CSS-in-JS (Styled components, Styled-JSX)
  • Zero Configuration (Routes, Hot Reloading)
  • Optimization of Images and Fonts
  • Optimized for Production

Some Companies that use Next.js

  • Tiktok
  • Github
  • Twitch
  • Nike
  • Uber

You can see more companies that use next at this link: https://nextjs.org/showcase

Get started

You can use React to build your user interface and gradually adopt Next.js features to solve common application requirements like routing, data fetching and integrations.

Image description

You can use create-next-app to create a project in Next, it automatically configures everything for you.

npx create-next-app@latest --typescript
yarn create next-app --typescript

Useful links

If you want to know more about Next.js
Below are some useful links for you.

SurveyJS custom survey software

JavaScript UI Libraries for Surveys and Forms

SurveyJS lets you build a JSON-based form management system that integrates with any backend, giving you full control over your data and no user limits. Includes support for custom question types, skip logic, integrated CCS editor, PDF export, real-time analytics & more.

Learn more

Top comments (2)

Collapse
 
sip profile image
Dom Sipowicz
Collapse
 
iamdevmarcos profile image
Marcos Mendes

you can use tailwind with nextjs if you want too, it's a great option too.
Here is a link that may be useful for you:
tailwindcss.com/docs/guides/nextjs

Billboard image

Create up to 10 Postgres Databases on Neon's free plan.

If you're starting a new project, Neon has got your databases covered. No credit cards. No trials. No getting in your way.

Try Neon for Free →

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay