EchoNextv1.4
Stable v1.4.8

Roadmap

Learn about Roadmap in EchoNext.

Roadmap

This document outlines the future development plans for EchoNext.

Current Status (v1.4.8)

EchoNext is production-ready with comprehensive features:

Core Framework

  • Type-safe handlers with automatic OpenAPI generation
  • Built-in validation and error handling
  • Full Echo compatibility
  • Comprehensive middleware support
  • File upload support with OpenAPI documentation
  • WebSocket support with Hub pattern
  • GraphQL integration with gqlgen

CLI Tool

  • Project initialization
  • Code generation (domains, handlers, services, etc.)
  • Database management commands
  • Hot reload development server (echonext dev)
  • Enhanced test runner (echonext test)
  • Build automation (echonext build)
  • WebSocket and Upload generators

Contrib Packages

  • Database helpers (GORM integration)
  • Configuration management (Viper integration)
  • Testing utilities
  • Middleware helpers with OpenTelemetry support

Documentation & Examples

  • Comprehensive guides
  • Multiple example projects (GraphQL, WebSocket, Upload)
  • Full API reference

Completed in v1.4.0

Developer Experience

  • Hot Reload Development Server

    echonext dev --watch
    • Watch for file changes
    • Auto-rebuild and restart
    • LiveReload integration for frontend
  • Enhanced Test Runner

    echonext test --coverage --verbose
    • Run tests with better reporting
    • Code coverage analysis
    • Test result formatting
  • Build Automation

    echonext build --optimize --platform linux/amd64
    • Optimized production builds
    • Cross-platform compilation
    • Binary size optimization

File Handling

  • File Upload Support in OpenAPI
    app.Upload("/avatar", uploadHandler, echonext.Route{
        Summary: "Upload avatar",
    })
    • Automatic multipart/form-data handling
    • File validation (size, type)
    • file.SaveTo() for easy persistence
    • OpenAPI documentation for file endpoints

Real-time Features

  • WebSocket Support
    app.WS("/chat", chatHandler)
    • Type-safe WebSocket handlers
    • Hub pattern for broadcasting
    • Connection management
    • CLI generator: echonext generate websocket

GraphQL Integration

  • GraphQL Support
    app.GraphQL(graphql.Config{
        Path: "/graphql",
        PlaygroundPath: "/playground",
    })
    • Seamless gqlgen integration
    • Echo context access in resolvers
    • GraphQL playground
    • Subscriptions support
    • CLI generator: echonext generate graphql

Code Generation

  • Generate from OpenAPI
    echonext generate openapi api.yaml
    • Generate handlers from OpenAPI spec
    • Generate models and DTOs
    • Route registration code

Short Term (Next 3-6 months)

Code Generation

  • Custom Templates

    • User-defined code generation templates
    • Template marketplace/sharing
    • Project-specific scaffolding
  • More Generators

    • Repository patterns
    • Use case/interactor patterns
    • Event handlers
    • Scheduled jobs

Documentation

  • Interactive Tutorial

    • Step-by-step web-based tutorial
    • Interactive code examples
    • Video guides
  • API Playground

    • Live API testing environment
    • Share and test API definitions
    • Mock server generation

Medium Term (6-12 months)

Real-time Features

  • Server-Sent Events (SSE)
    app.SSE("/events", eventsHandler, echonext.SSE{
        Summary: "Live updates",
    })
    • Type-safe SSE handlers
    • Event streaming
    • Client reconnection

Advanced Features

  • Background Jobs

    • Job queue integration
    • Scheduled tasks
    • Retry mechanisms
    • Job monitoring
  • Caching Layer

    • Built-in caching middleware
    • Redis integration
    • Cache invalidation strategies
    • Response caching

Long Term (12+ months)

  • Generate from Database Schema
    echonext generate from-db --connection postgres://...
    • Auto-generate models from existing database
    • Create CRUD handlers
    • Relationship detection

Advanced Middleware

  • Circuit Breaker

    • Automatic failure detection
    • Graceful degradation
    • Recovery mechanisms
  • Advanced Rate Limiting

    • Distributed rate limiting
    • Per-user rate limits
    • Token bucket algorithm
    • Sliding window

Multi-Protocol Support

  • gRPC Integration

    • Type-safe gRPC handlers
    • Automatic proto generation
    • Gateway for HTTP/JSON
    • Streaming support
  • Message Queue Integration

    • RabbitMQ support
    • Kafka support
    • NATS support
    • Event-driven patterns

Microservices Features

  • Service Mesh Integration

    • Istio compatibility
    • Linkerd integration
    • Automatic service discovery
  • Distributed Tracing Enhancements

    • Advanced span relationships
    • Trace sampling strategies
    • Performance insights
    • Error tracking

Developer Tools

  • VS Code Extension

    • Syntax highlighting for EchoNext patterns
    • Code snippets
    • Route visualization
    • OpenAPI preview
  • CLI Plugin System

    • Custom command plugins
    • Community command marketplace
    • Plugin development SDK

Testing & Quality

  • Load Testing Tools

    echonext bench --duration 60s --rps 1000
    • Built-in load testing
    • Performance profiling
    • Bottleneck identification
  • Contract Testing

    • Consumer-driven contracts
    • Provider verification
    • Contract evolution

Community Requests

Have an idea? We want to hear it!

  1. Open an issue with the feature-request label
  2. Describe your use case
  3. Explain why it would benefit others
  4. Discuss implementation approaches

Contributing to the Roadmap

Want to help implement features?

  1. Check GitHub Issues for features marked help-wanted
  2. Comment on the issue to express interest
  3. Follow the Contributing Guide
  4. Submit your PR!

Feature Voting

We prioritize features based on:

  • Community demand - GitHub issue reactions and comments
  • Use case value - Real-world problem solving
  • Implementation complexity - Balance of effort vs. benefit
  • Ecosystem fit - Alignment with Go and Echo community

Vote on features by:

  • 👍 Reacting to feature request issues
  • 💬 Commenting with your use case
  • 🌟 Starring the repository

Versioning Strategy

  • Patch releases (1.0.x) - Bug fixes, documentation, minor improvements
  • Minor releases (1.x.0) - New features, backwards compatible
  • Major releases (x.0.0) - Breaking changes, major features

Stay Updated

  • Watch the GitHub repository
  • Follow release notes
  • Join discussions
  • Subscribe to announcements

Questions?


Note: This roadmap is subject to change based on community feedback, priorities, and resources. Features may be added, removed, or rescheduled.

Last updated: December 2024

On this page