NuxtLabs is joining Vercel
31–40 of 83 posts
Re: NuxtLabs is joining Vercel
#32Earlier quoted context omitted.
> doesn’t really fit well into any good use case I agree. If you want an SPA just use Vue's official router. It's getting better now thanks to Eduardo working on file-based router, data loaders, Pinia colada, etc. If you want a static site or MPA, Astro really seems like a better choice than Nuxt. https://uvr.esm.is/ https://pinia-colada.esm.dev/
There is no universe in which Astro is a better choice than Nuxt for Vue-based MPA, SSG or SPA with SSR situations.
Re: NuxtLabs is joining Vercel
#33Pretty incredible that now Next.js, Svelte/kit and Nuxt will be under Vercel. This could be a great thing as now all of these devs are much better supported in their work, but I’d be lying if I didn’t say that this situation makes me quite nervous.
Re: NuxtLabs is joining Vercel
#34This is awful news unless hopefully this REALLY doesn't influcence the development into a more react-y way away from Vue.
Re: NuxtLabs is joining Vercel
#35"Vue is currently the only mainstream framework that remains independent. (i.e. not dominantly owned / backed by a single corporation" Evan You https://x.com/jpschroeder/status/1762764818254016513/photo/1 I know Nuxt is not Vue itself, and I'm not saying Vue is no longer independent — but I do think it's worth remembering that independence is something highly valued in the Vue community.
Re: NuxtLabs is joining Vercel
#36Pretty incredible that now Next.js, Svelte/kit and Nuxt will be under Vercel. This could be a great thing as now all of these devs are much better supported in their work, but I’d be lying if I didn’t say that this situation makes me quite nervous.
Embrace, extend, extinguish… Tale as old as… well, the 60’s… but still, it’s an old tale.
Re: NuxtLabs is joining Vercel
#37Earlier quoted context omitted.
I'm just reading the docs and it seems more capable than that: https://docs.astro.build/en/concepts/islands/#server-islands I have also just discovered a dedicated section for the migration from Nuxt to Astro: >Key Similarities between Nuxt and Astro Nuxt and Astro share some similarities that will help you migrate your project: - Astro projects can also be SSG or SSR with page level prerendering. - Astro uses file-b…
It's only "more capable" in the sense that yes, ultimately, it's JavaScript and you can do a lot with JavaScript. But Astro's model is "generate markup once, serve statically". Nuxt's model is "Server-Side JavaScript"
So their philosophy is to start with zero client-side javascript, even when one is using components from javascript-heavy frameworks like React or Vue. Interactivity is apparently something one has to explicitly opt-in to by adding a client:* directive, rather than it being the default.
The migration guide states, "Astro projects can also be SSG or SSR with page level prerendering," which puts it on par with Nuxt in that regard.
A difference I've noticed regarding server-side features is that Astro allows one to "define and call backend functions with type-safety."[0] which even Nuxt doesnt offer in such a convenient and type-safe manner. I'm pretty happy with what i'm seeing in Astro's docs so far.
Re: NuxtLabs is joining Vercel
#38That said, I can only imagine how incredibly freeing it must be to not have to worry about funding, so I couldn't blame them in the slightest. I really with them the best and hope Nuxt continues to be great. Looking forward to v4 soon!
Re: NuxtLabs is joining Vercel
#39Earlier quoted context omitted.
> Hard to see the real reason for Vercel to do this. Next supremacy is very obvious Kills all those Linkedin threads about moving away from Next. Kills the indecision for what employment-seeking devs need to optimize for. Makes those job descriptions less all over the place and even more Next focused
That doesn't make any sense at all. Vercel wins either way if you choose Next, Nuxt, or Svelte. Seems obvious - why would they care if you use Next vs. Nuxt now?
Because maintaining three projects is more expensive than maintaining one. It's within their best interests to quietly extinguish any alternatives in favor of the one that most closely matches their vision.
Re: NuxtLabs is joining Vercel
#40Earlier quoted context omitted.
Astro is nice, but its a different model than Nuxt, more suited to static sites.
I'm just reading the docs and it seems more capable than that: https://docs.astro.build/en/concepts/islands/#server-islands I have also just discovered a dedicated section for the migration from Nuxt to Astro: >Key Similarities between Nuxt and Astro Nuxt and Astro share some similarities that will help you migrate your project: - Astro projects can also be SSG or SSR with page level prerendering. - Astro uses file-b…