When NuxtLabs joined Vercel, we promised to transform nuxt.studio from a hosted platform into a free, open-source module. Today, we're excited to announce the first alpha release of the Nuxt Studio module.
Discover the Nuxt Studio module on GitHub.You can now enable content editing directly in production, with real-time preview and GitHub integration, all from within your own Nuxt application.
Try editing this pageThis milestone wouldn't have been possible without Vercel's support. Their backing allowed us to dedicate the resources needed to rebuild Studio as an open-source module.
Originally provided as a hosted platform at nuxt.studio, Studio is now a free and open-source Nuxt module that you can deploy alongside your Nuxt Content website.
This means content editors can manage and update content directly in production, on their website, without the need of local development tools or Git knowledge.
The only trade-off is that Studio now requires a server-side route for authentication. While static generation remains supported with Nuxt hybrid rendering, your site must be deployed on a platform that supports SSR.
The alpha release focuses on core infrastructure and stability without risking any bugs introduced by the Visual editor. We're using Monaco editor to ensure all file operations and GitHub workflows are rock-solid before introducing visual editing.
Monaco Code Editor → IDE editing experience with syntax highlighting for Markdown, YAML, and JSON, including full MDC syntax support and split-screen diff viewer for conflicts.
File Operations → Complete CRUD operations for your content/ directory. Create, edit, delete, rename, and move files with built-in draft management.
Media Management → Centralized library for assets in your public/ directory with upload, organize, preview, and integrate capabilities.
Git Integration → Direct commits to GitHub via OAuth with conflict detection, author attribution, and custom commit messages.
Real-time Preview → Live preview of draft changes on your production website with instant updates and side-by-side editing.
Q4 2025Inspired from what we've built on nuxt.studio, the beta phase will introduce the open-source visual editor, making Studio accessible to non-technical users:
End of Year 2025Production-ready features, performance optimizations, and enhanced stability.
2026AI-powered content suggestions, multiple git providers, and community-driven features.
Studio uses a three-tier storage architecture to keep content synchronized between your browser and GitHub.
SQLite WASMWhen your Nuxt Content website loads, Nuxt Content v3 downloads a SQLite database dump from your server and initializes a local WASM database containing all content from your deployed branch. This database stays in sync with GitHub as long as your last deployment completed successfully. This is the production database updated by Studio when you edit content.
IndexedDBStudio maintains a separate draft layer using unstorage backed by IndexedDB. When you edit content, changes are stored as drafts locally in your browser. Each time Studio loads, these drafts are merged with the SQLite database to render a drafted version of your production site.
API IntegrationWhen you publish, Studio commits your draft changes directly to GitHub through the GitHub API. Your CI/CD pipeline then rebuilds and redeploys your site automatically. After deployment, you'll need to refresh to update your browser database with the latest content.
Nuxt Content downloads the SQLite database dump generated during the build process.
This file contains all parsed content from your content/ directory.
Studio checks IndexedDB for any existing drafts from previous sessions and loads them into the SQLite database.
Studio refreshes the site preview so you can view your latest drafts and edits directly on your production website.
Changes are saved immediately in IndexedDB as draft items with a status of created, modified, or deleted.
The local SQLite database is updated to include your draft content, allowing instant visual preview.
Studio compares your draft content against the latest version on GitHub to detect possible conflicts.
Studio gathers all draft items that contain changes.
Using the GitHub API, Studio creates a new commit with all updated files.
Your CI/CD platform detects the commit and automatically rebuilds and redeploys your website.
After publication, Studio clears the local drafts and waits for the deployment to complete.
During this time, a loading state is shown while the production SQLite database catches up with your latest commit.
Install the module and configure your GitHub OAuth app to start editing content in production:
npx nuxi module add nuxt-studio
Check out the setup guide for complete installation and configuration instructions.
We're excited to see what you build with Nuxt Studio. Join the conversation on GitHub Discussions or join our Discord to help shape the future of the module.