DEV Community

Helen Small
Helen Small

Posted on

Building Devunus: Why I Chose Cloudflare Workers + Remix for My Dev Tools Suite

Hey I'm building Devunus, a developer tools suite for feature flags and analytics, and I'd love to share my technical journey and get your feedback.

The Stack

  • Remix for the framework
  • Cloudflare Workers for edge compute
  • Cloudflare KV for edge data storage

Why This Stack?

Cloudflare Workers

  • Global distribution by default
  • Super low latency (crucial for feature flags)
  • No cold starts compared to traditional serverless
  • Pay-as-you-go pricing

Why Remix?

  • Loader/action pattern that simplifies data flow
  • Server-side rendering for better performance
  • Smaller bundle sizes compared to client-heavy frameworks
  • Great TypeScript support out of the box
  • Plays nicely with Cloudflare Workers

Cloudflare KV

  • Key-value storage at the edge
  • millisecond reads globally
  • Perfect for feature flags and user settings
  • No connection strings or complex setup
  • Automatic replication across 300+ data centers

What I'm Building

Devunus helps developers with:

  • 🚀 Feature flag management
  • 📊 Analytics tracking
  • 🔍 Reliability monitoring
  • 📦 Component management

Looking for Beta Users

I'm looking for developers who:

  • Want simple, reliable feature flags
  • Need basic analytics without the bloat
  • Are interested in edge computing
  • Like to provide feedback and shape products

What's Next?

  • Adding A/B testing capabilities
  • Building more analytics dashboards
  • Improving the API
  • Adding more integration examples

Try out the interactive demo at devunus.com

Would love to hear your thoughts! What features would you find most useful? Any experiences with similar tech stacks?

Top comments (0)