Live data from Hacker News

Ask HN: The whole NextJS situation is overwhelming

news.ycombinator.com

11–16 of 16 posts

Re: Ask HN: The whole NextJS situation is overwhelming

#11
post #9

Earlier quoted context omitted.

I second that. React is not needed anymore, much less nextjs. People should break free from these shackles

But using what, just js + html + css, for anything moderately complex this will become impossible. Even all AI agents will have easier time using some framework as it will be easier to comprehend most likely

> for anything moderately complex this will become impossible.

It won't. You actually remove complexity by removing unnecessary dependencies.

You can organize your code the same way you would with React: components, state management, reactivity. It is all there within JS+HTML+CSS without 100kbytes of minified JS.

Re: Ask HN: The whole NextJS situation is overwhelming

#14
post #8
post #7

Earlier quoted context omitted.

Blaming all of frontend for Next.js' issues is a bit much, but I agree; people have been complaining about Next.js for a long time. It's slow, complicated, and a PITA if you need to do anything outside the box. Unfortunately, options for SSR in React are all pretty limiting compared to other languages' frameworks, unless you go the full DIY route which isn't usually feasible. Of course, if you don't need SSR there's…

nextjs is great in a sense that it allows to make full stack apps very conviniently. Making an api endpoint is just creating a file. If only there was less stuff in between though

You can use Next with the page router and it's lot simpler. Or Astro?

Re: Ask HN: The whole NextJS situation is overwhelming

#15
post #8

Earlier quoted context omitted.

nextjs is great in a sense that it allows to make full stack apps very conviniently. Making an api endpoint is just creating a file. If only there was less stuff in between though

You can use Next with the page router and it's lot simpler. Or Astro?

"Simpler" doesn't necessarily mean better. Next is convenient as long as you stay inside the box, but it's very limiting otherwise (that is, it doesn't adapt to a wide variety of usecases, but rather forces you to adapt to it -- that's my main gripe).

Re: Ask HN: The whole NextJS situation is overwhelming

#16
post #15

Earlier quoted context omitted.

You can use Next with the page router and it's lot simpler. Or Astro?

"Simpler" doesn't necessarily mean better. Next is convenient as long as you stay inside the box, but it's very limiting otherwise (that is, it doesn't adapt to a wide variety of usecases, but rather forces you to adapt to it -- that's my main gripe).

Absolutely. I agree with you.
Post reply on HN