Live data from Hacker News

Nuxt.js over Vue.js: when should you use it and why

bornfight.com

11–20 of 80 posts

Re: Nuxt.js over Vue.js: when should you use it and why

#13
I admit I don't know the space that well, but I find it interesting that you get static site generators for SPA frameworks, and the companies behind them get really significant VC funding.

Naively it seems a trivial problem, but I guess that SEO for SPA is not as trivial as I imagine?

Re: Nuxt.js over Vue.js: when should you use it and why

#14

Earlier quoted context omitted.

probably because there are so many js “frameworks” that they are running out names

Sort of makes me bummed out that the Dart project failed. If there was one time when we could have escaped the client side hell that is JavaScript it would have been then, when chrome had astonishing market share, and Dart could compile down to JS to ease the transition until native support became standardized. But nope, here we are with anotherone.js every week.

what makes you say it failed? Flutter is growing strong.

Re: Nuxt.js over Vue.js: when should you use it and why

#15

My biggest thing with Nuxt is that only the first page load is server side rendered. Everything else is client side. So doing complex search and re-render is done client side.

If you use query params, the search and render can be done server side..

Re: Nuxt.js over Vue.js: when should you use it and why

#16
post #14

Earlier quoted context omitted.

Sort of makes me bummed out that the Dart project failed. If there was one time when we could have escaped the client side hell that is JavaScript it would have been then, when chrome had astonishing market share, and Dart could compile down to JS to ease the transition until native support became standardized. But nope, here we are with anotherone.js every week.

what makes you say it failed? Flutter is growing strong.

Is there a way around the nested mess in Flutter widgets? I took a stab at a small app but it was basically a new div hell. Besides that however, it was quite neat.

Re: Nuxt.js over Vue.js: when should you use it and why

#18
post #15

My biggest thing with Nuxt is that only the first page load is server side rendered. Everything else is client side. So doing complex search and re-render is done client side.

If you use query params, the search and render can be done server side..

Which should be done because it helps the user very much.

Sharing filtered links or storing filtered links in your favorites becomes impossible when the query parameters don't change.

Re: Nuxt.js over Vue.js: when should you use it and why

#19
post #5
post #2

Warning that Nuxt.js is almost 100k out of the box, making it unsuitable for mobile usage.

Depending on what you're building, I don't find 100k to be that much .

It's not only filesize it's also what the browser must parse. Parsing huge files is not a great experience on mobile.
Post reply on HN