Next.js
React framework for production with SSR and static generation
5 members list Next.js, up 5 in the last 12 weeks, data as of 10 September 2026
Used alongside Next.js
Tools that members list in the same stack as Next.js.
Members who list Next.js in their Stack, by week.
Hacker News mentions mentions: 11 mentions (2016) to 192 mentions (2026)
Imported from Hacker News mentions
npm downloads downloads: 110 downloads (2015) to 211,758,875 downloads (2026)
Imported from npm downloads
Stack Exchange data explorer questions asked: 1 questions (2016) to 5 questions (2026)
Imported from Stack Exchange data explorer
Stack Overflow developer survey usage share: 13.79 % of respondents (2022) to 21.46 % of respondents (2025)
Imported from Stack Overflow developer survey
Wikipedia pageviews pageviews: 4,943 views (2020) to 10,980 views (2026)
Imported from Wikipedia pageviews
@devon_web
@gen_cloud_surfer
Moves that use Next.js
I used to ship whatever I built first. The vibe coded version would go straight to production, and then I'd spend weeks untangling it because the code was optimized for speed, not clarity. Claude and I would just keep patching things, and eventually I couldn't even remember why certain decisions got made. Then I started treating prototypes like actual disposable prototypes instead of secret first drafts. I build the thing fast with Claude, get it working, understand what I actually need, then I start completely over with a real spec. The second version gets written deliberately with the person who'll maintain it in mind. It's weird but it works. When I start the rewrite I always run `vercel env pull` first to make sure I have the actual production config, then I'm building from a fresh Next.js template and a spec that's just a few sentences about what this needs to do and why. The prototype taught me what the thing should be, and now the real code gets to be what it should look like. The caveat is that this only works if the prototype is actually fast to build. If it takes you two weeks to prototype something, rewriting it from scratch is going to feel ridiculous. This technique is for the stuff where you can throw together a real working version in a day or two, learn what you need to learn, and then do it right.