DEV Community

Tanay Karnik
Tanay Karnik

Posted on • Originally published at nuxflare.com

Announcing Nuxflare 0.2: UX improvements, better NuxtHub compatibility, custom domains, GitHub Actions support

I'm super excited to share the release of Nuxflare 0.2.2 with you today.

Here's what's new:

πŸš€ Better CLI Experience

We've completely rebuilt the CLI to make it easier to use. Getting started is now as simple as:

nuxflare init
Enter fullscreen mode Exit fullscreen mode

Image description

Just run this command in your project and follow the simple steps to set up and deploy.

🌐 Custom Domains

You can now easily set up your own domain during the initial setup (with nuxflare init).
This domain is used when you deploy to production:

nuxflare deploy --production
Enter fullscreen mode Exit fullscreen mode

Want separate domains for testing? No problem! Set up a dev domain and use stages:
For example, if your dev domain is dev.nuxflare.com and you deploy to stage tanay, your app will be at tanay.dev.nuxflare.com

nuxflare deploy --stage tanay
Enter fullscreen mode Exit fullscreen mode

πŸ”„ Works Like NuxtHub CLI

If you've used NuxtHub before, you'll feel right at home. We now support familiar commands like:

nuxflare logs --production  # see real-time remote logs
nuxflare open --stage tanay  # quickly view your deployed site
Enter fullscreen mode Exit fullscreen mode

πŸ€– GitHub Actions Support

Automate everything with our new GitHub Actions support! You can now set up:

  • Manual deployments
  • Automatic production deployments with the main branch
  • Create preview deployments for each PR

πŸ—οΈ Cleaner Project Structure

We now create a dedicated nuxflare folder for all the technical stuff, keeping your main sst.config.ts file clean and simple.

🧩 Works With Monorepos

You can now use Nuxflare in projects with multiple Nuxt appsβ€”more about this soon. This is how Nuxflare Pro works.

πŸ› οΈ More Reliable Than Ever

We've fixed lots of issues to make everything work better:

  • Smoother deployments
  • Better resource handling
  • Cleaner cleanup when you remove things

Give Nuxflare 0.2 a try today and let me know what you think! I'd love to hear your feedback as we keep making Nuxflare better together.

Top comments (0)