Nuxt Tip π‘
The stale-while-revalidate pattern: Serve fast, update in background. Users get instant responses (even if slightly stale) and the cache rebuilds in the background.
Here's how you can do this in Nuxt/ Nitro.π
Nuxt Tip π‘
The stale-while-revalidate pattern: Serve fast, update in background. Users get instant responses (even if slightly stale) and the cache rebuilds in the background.
Here's how you can do this in Nuxt/ Nitro.π
Nuxt 4's cachedEventHandler is a fantastic feature.π₯
All you do is wrap your API routes to cache responses!
Unpopular opinion: Many plugins should be composables instead.
Plugins load on every page.
But composables load only when you use them.
Nuxt Tip π‘
Want to reduce your initial bundle size?
Use the Lazy prefix on component.
Components behind v-if still get bundled unless you add "Lazy" to the name. Then they only load when needed.
π¨Β Nuxt 3 is fast by default. But the real gains come from how you use it.
Hybrid rendering, lazy loading, smart caching, image optimization, and Core Web Vitals explained in one practical guide π
https://masteringnuxt.com/blog/performance-optimization-in-nuxt-3
JavaScript skills donβt grow by accident.
They grow when theyβre challenged. β‘
Get 48 hours FREE access to our Mid-Level JavaScript study guide on Feb 7β8 & put your skills to the test.
π»18 Code Challenges π§ 42 Quizzes π17 Lessons πTrial Exam
Sign upπ
https://go.certificates.dev/jsfwx
Happy 2026! π
May your Nuxt apps load faster, your components stay lazy, and your dev workflow stay blissfully bug-free.
What feature or improvement do you really hope Nuxt brings in 2026? π₯
If you encounter an error during server-side rendering, Nuxt provides the `<NuxtClientFallback>` component to display fallback content.
It shows a custom UI when a server-rendered component fails.
You must enable it by setting `experimental.clientFallback` to `true`.
Happy Holidays from the Mastering Nuxt team π
We want to send a big thank you to our amazing community of devs & Nuxt enthusiasts.
Hereβs to more coding, creativity, and incredible Nuxt apps in 2026 π«
Nuxt Tip of the Week π‘
If you want to run code on the client before Nuxt does any initialization, use the `onPreHydrate` composable.
This lets you manipulate the DOM or add event listeners using only vanilla JavaScript
Building with @nuxt_js in 2026? Start strong before the year ends.
End of Year Sale is now live - get can get access to the official Nuxt 4 course for less:
β‘οΈ Up to 33% off the Full Stack Unleashed Complete
β‘οΈ 59% off the Super Bundle
Get yours todayπ
https://masteringnuxt.com/
Tip of the Day π‘
With @nuxt_js, you can access the entire payload sent from the server to the client using the `useNuxtApp` composable.
This allows you to inspect all the data and state transferred during SSR or hydration.
Did you know that Nuxt Image v2 allows you to programmatically transform images from within your Nitro endpoint π
Serious Nuxt apps need serious knowledge - nowβs your chance to learn! π»
Cyber Monday is your last shot to grab Mastering Nuxt Full Stack Unleashed, the official course for Nuxt, with full-stack projects, AI chat apps & more - up to 60% off π
https://vue.school/mnbf25x
Learn Nuxt 4 the official way this Black Friday!π
π£ 40% off the Complete Bundle
OR
π₯Go all-in with the Super Bundle at 62% off
Unlock 100+ lessons & everything Michael Thiessen & the Nuxt team helped build into the official course.π
https://vue.school/mnbf25x
Nuxt Tip of the Day π‘
In Nuxt 4.2, you can pass in your own AbortController when data fetching if you need fine-grained control over when requests are canceledπ
Turns out Nuxt versions 3.0 to 3.17. had hidden gems all along. π
Weβve rounded up 26 hidden features, route groups, preview mode, delayed hydration, and more - with examples and tips for upgrading to Nuxt 4.
Discover them here π
https://masteringnuxt.com/blog/26-nuxt-features-you-may-missed
Mastering Nuxt Fullstack Unleashed is the official @nuxt.com 4 course! π
Built with @michaelthiessen.bsky.social & the Nuxt team, it has 100+ lessons, a full AI chat app, real-world production patterns & more
Master full-stack Nuxt dev today - up to 70% off π
vue.school/mnseb25x
Youβre probably building your Nuxt app slower than you need to.
Not because you're doing anything wrong⦠but because Nuxt hides a ton of shortcuts in plain sight.
Here are 10 tricks that instantly speed up your workflow. π
https://masteringnuxt.com/blog/10-dev-tricks-to-build-your-nuxt-app-faster
When working with Nuxt, the `nitroApp` object inside plugins gives you access to various runtime hooks.
These hooks include `close`, `error`, `render:response`, `request`, `beforeResponse`, & `afterResponse`.
You can use these to run custom logic at different stages of the server lifecycle.
Forget the hardware upgrades - this Black Friday, upgrade you!πͺ
The Black Friday Early Bird Deal is LIVE: up to 60% OFF @vuejs.org, @nuxt.com, React, Angular, & JavaScript Certification + get bonus items with Mid or Senior Certificationπ
Donβt miss our biggest deal everπ
go.certificates.dev/eb25X
Nuxt Tip Of The Week π‘
When you want to create a redirect in a server route, Nuxt lets you use the `sendRedirect` method from h3.
By default, this sends a 302 (temporary) redirect, but you can specify a different status code if needed.
Tired of passing props through a maze of components? π
Learn how `useState` keeps your app reactive, SSR-ready, and perfectly simple - no complex setup, no data leaks, just clean global state that works.
https://masteringnuxt.com/blog/understanding-usestate-in-nuxt-the-simple-way-to-share-state
Nuxt Tip Of The Dayπ‘
With Nuxt, since version 3.9, you can control how fetch requests are deduplicated using the dedupe parameter in the useFetch composable.
By setting dedupe to 'cancel', the previous request is cancelled and a new one is made whenever parameters change.
Nuxt Tipπ‘
With Nuxt, you can access the entire payload sent from the server to the client using the useNuxtApp composable.
This allows you to inspect all the data and state transferred during SSR or hydration.
π‘ Did you know that with Nuxt you can access the entire payload sent from the server to the client using the `useNuxtApp` composable?
This allows you to inspect all the data and state transferred during SSR or hydration.
Tip of the day π‘
When working with Nuxt, you can control where your code runs by checking the environment. Use if (!import.meta.server) to skip code on the server, and if (!import.meta.client) to skip code on the client.
π₯Β ViteConf 2025 is almost here! π₯
Join Evan You, Daniel Roe, Anthony Fu, and more for two days of deep Vite talks, workshops, and the latest in web tech.
See how Vite is powering Nuxt and shaping the future of web development.
ποΈ Info & Tickets here: https://viteconf.amsterdam/
When writing unit tests, Nuxt provides a way to opt-in to a Nuxt environment by adding `.nuxt.` to your test filenames.
For example, you can name your test file like this π