MasteringNuxt's profile picture. Learn how to develop and deploy fast, production-ready Nuxt apps.

Courses developed in collaboration with @Nuxt_js

Powered by @Bitter_Brains

Mastering Nuxt

@MasteringNuxt

Learn how to develop and deploy fast, production-ready Nuxt apps. Courses developed in collaboration with @Nuxt_js Powered by @Bitter_Brains

Pinned

Mastering Nuxt 2025 Edition is LIVE! 🎉 Created with Nuxt expert, @MichaelThiessen, this is the most in-depth, fun, realistic, & only official course for learning @nuxt_js! For 24 hours only, get 35% OFF with our exclusive Early Bird offer! Get it now👇 masteringnuxt.com/2025


Mastering Nuxt reposted

Ok this is getting really interesting 👀 @raycast @nuxt_js

HugoRCD__'s tweet image. Ok this is getting really interesting 👀 @raycast  @nuxt_js

A couple of new features I'm playing with for the @raycast Nuxt extension... ✨ - Copy Markdown source from docs directly - A little menu bar utility for your dev server What else should a @nuxt_js menu bar app do? I'm all ears! 👇

HugoRCD__'s tweet image. A couple of new features I'm playing with for the @raycast Nuxt extension... ✨

- Copy Markdown source from docs directly
- A little menu bar utility for your dev server

What else should a @nuxt_js menu bar app do?  I'm all ears! 👇


Our team made it to @ViteConf 2025 in Amsterdam & what an amazing experience it's been so far! A big highlight was Daniel Roe’s talk today on the State of @nuxt_js & @vite_js🔥 Insightful, exciting, & full of clarity about where things are headed. We’re feeling inspired!🙌

MasteringNuxt's tweet image. Our team made it to @ViteConf 2025 in Amsterdam &  what an amazing experience it's been so far! 

A big highlight was Daniel Roe’s talk today on the State of @nuxt_js & @vite_js🔥

Insightful, exciting, & full of clarity about where things are headed. We’re feeling inspired!🙌
MasteringNuxt's tweet image. Our team made it to @ViteConf 2025 in Amsterdam &  what an amazing experience it's been so far! 

A big highlight was Daniel Roe’s talk today on the State of @nuxt_js & @vite_js🔥

Insightful, exciting, & full of clarity about where things are headed. We’re feeling inspired!🙌

Mastering Nuxt reposted

One of my favourite features in @nuxt_js is Prose Components. Well, technically, they are part of Nuxt Content, but you know what I mean... I wrote five different in-depth examples exploring the different things that can be done with Prose Components: masteringnuxt.com/blog/mastering…


Nuxt Tip💡 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.

MasteringNuxt's tweet image. Nuxt Tip💡

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.

Mastering Nuxt reposted

JavaScript Cheatsheet - Part 2 📜 Arrays power most real-world JavaScript data work. Mastering the core methods and loops is essential for exams, interviews, and everyday! Need a printable version? DM us! 📥

CertificatesDev's tweet image. JavaScript Cheatsheet - Part 2 📜

Arrays power most real-world JavaScript data work. 

Mastering the core methods and loops is essential for exams, interviews, and everyday!

Need a printable version? DM us! 📥

Mastering Nuxt reposted

Our Autumn Sale is live! 🍁 For 1 week only, get 50% OFF all Senior Certification Bundles - including official @vuejs & @nuxt_js, and Angular, JavaScript, & React. Exam vouchers are valid for 3 years, so you can take the exam when ready. Get your senior bundle today 👇…

CertificatesDev's tweet image. Our Autumn Sale is live! 🍁

For 1 week only, get 50% OFF all Senior Certification Bundles - including official @vuejs & @nuxt_js, and Angular, JavaScript, & React.

Exam vouchers are valid for 3 years, so you can take the exam when ready.

Get your senior bundle today 👇…

Tired of juggling messy config files for each environment? @nuxt_js environment overrides let you define clean, environment-specific settings in your nuxt.config.ts - no more awkward process.env.NODE_ENV checks. Learn how👇 masteringnuxt.com/blog/nuxt-envi…


Mastering Nuxt reposted

Early Access to AI-Driven Development Masterclass is LIVE!🚀 Get hands-on courses, real-world AI workflows, capstone AI-first project builds, live workshops, community support, lifetime updates & more! Get 45% OFF + free extras go.nextgendev.ai/launchx go.nextgendev.ai/launchli


Tip of the day 💡 When working with @nuxt_js, 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.

MasteringNuxt's tweet image. Tip of the day 💡

When working with @nuxt_js, 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.

Mastering Nuxt reposted

AI-Driven Development Masterclass early access opens on September 30th 🎉 The Masterclass will give you a step-by-step playbook to: ⚡ Build faster & smarter using AI tools and concepts 🤝 Operate like a team 20x your size + more Mark Your Calendars 🗓️ aidd.io

aidd_io's tweet image. AI-Driven Development Masterclass early access opens on September 30th 🎉 

The Masterclass will give you a step-by-step playbook to:
⚡ Build faster & smarter using AI tools and concepts
🤝 Operate like a team 20x your size + more

Mark Your Calendars 🗓️ aidd.io

🔥 @ViteConf 2025 is almost here!🔥 Join Evan You, Daniel Roe, Anthony Fu, and more for 2 days of deep Vite talks, workshops, & the latest in web tech. See how Vite is powering @nuxt and shaping the future of web development. 🎟️ Info & Tickets here: viteconf.amsterdam


When writing unit tests, @nuxt_js 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 👇

MasteringNuxt's tweet image. When writing unit tests, @nuxt_js 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 👇

Looking to add real-time features to your @nuxt_js app?⚡️ This guide walks through building a live community chat using Nuxt 4 and Socket.IO - complete with user presence, live messaging, and persistent usernames. Read the full breakdown 👇 masteringnuxt.com/blog/building-…


Tip of the day 💡 In @nuxt_js you can pass route objects to `navigateTo`, similar to `router.push` in Vue Router. This enables navigation using named routes, query parameters, or hash fragments.

MasteringNuxt's tweet image. Tip of the day 💡

In @nuxt_js you can pass route objects to `navigateTo`, similar to `router.push` in Vue Router. 

This enables navigation using named routes, query parameters, or hash fragments.

Mastering Nuxt reposted

Nuxt UI v4.0.0-alpha.2 it out with lots of bug fixes and documentation improvements 🚀 You can expect the official Nuxt UI v4 release next week after some more testing! github.com/nuxt/ui/releas…


Mastering Nuxt reposted

JavaScript Cheatsheet 📜 Arrays power most real-world JavaScript data work. Mastering the core methods and loops is essential for exams, interviews, and everyday productivity. 💾 Save this post and stay tuned for Part 2 coming soon!

CertificatesDev's tweet image. JavaScript Cheatsheet 📜

Arrays power most real-world JavaScript data work. Mastering the core methods and loops is essential for exams, interviews, and everyday productivity. 

💾 Save this post and stay tuned for Part 2 coming soon!

Mastering Nuxt reposted

AI-Driven Development Day is LIVE! 🚨 Dive into AI tools transforming dev productivity, learn new workflows with CLI & Langflow, plus live Q&As & AIDD course sneak peeks hosted by our MC of the day @danielkelly_io 📺 Join now, its FREE: go.nextgendev.ai/aiddday

aidd_io's tweet image. AI-Driven Development Day is LIVE! 🚨

Dive into AI tools transforming dev productivity, learn new workflows with CLI & Langflow, plus live Q&As & AIDD course sneak peeks hosted by our MC of the day @danielkelly_io

📺 Join now, its FREE: go.nextgendev.ai/aiddday

Mastering Nuxt reposted

Just 1 hour till AI-Driven Development Day kicks off! 🚀 Join experts @danielkelly_io, @kentcdodds, @TejasKumar_, @debs_obrien, @jpschroeder, @HeyGarrison, Benedikt Stemmildt, @Moose_Said & @philnash 🔥 Sign up to join 👇 aidd.io/ai-driven-deve…


If you want to run code on the client before @nuxt_js does any initialization, use the `onPreHydrate` composable. This lets you manipulate the DOM or add event listeners using only vanilla JavaScript:

MasteringNuxt's tweet image. If you want to run code on the client before @nuxt_js does any initialization, use the `onPreHydrate` composable.

This lets you manipulate the DOM or add event listeners using only vanilla JavaScript:

You can easily include global CSS files in every page by using the css config value in @nuxt_js. This gives you consistent styling across your entire Nuxt app.

MasteringNuxt's tweet image. You can easily include global CSS files in every page by using the css config value in @nuxt_js. This gives you consistent styling across your entire Nuxt app.

Loading...

Something went wrong.


Something went wrong.