The initial experience with Encore is genuinely surprising. After installing the CLI and creating a new project, you define an API endpoint with a few TypeScript decorators and run encore run. Within seconds, a local development server starts with an automatically generated service catalog showing all your APIs, a distributed tracing dashboard, and interactive API documentation. This zero-configuration developer experience sets a new standard for backend frameworks.
The infrastructure-from-code concept is Encore's core innovation. Rather than writing Terraform alongside application code, you declare cloud resources using framework primitives. A SQLDatabase type creates a PostgreSQL database, a Topic type provisions a pub/sub queue, and a CronJob type sets up scheduled execution. Encore's compiler analyzes these declarations to understand the application architecture and generates the appropriate cloud infrastructure on deployment.
The TypeScript and Go language support covers the two most popular choices for modern backend development. Both language SDKs provide the same infrastructure primitives with idiomatic syntax for each language. The TypeScript experience feels particularly natural for Node.js developers who can declare APIs, middleware, and services using familiar patterns while gaining automatic infrastructure provisioning.
Local development tooling is where Encore's developer experience truly excels. The development dashboard provides a visual service catalog showing all APIs and their dependency relationships, distributed tracing that visualizes request flows across services even in local development, and automatically generated API documentation that stays synchronized with code changes without requiring OpenAPI spec maintenance.
Deployment to AWS or GCP follows the same code-driven approach. Running encore deploy provisions the necessary cloud resources including compute, databases, messaging queues, and cron triggers based on the application's code declarations. The generated infrastructure follows cloud provider best practices with VPC isolation, security groups, and IAM roles configured automatically.
The escape hatch story is important for evaluating any opinionated framework. Encore allows customization through infrastructure overrides that modify the generated Terraform without abandoning the framework entirely. Teams that need specific cloud configurations or resources not covered by Encore's primitives can extend rather than replace the generated infrastructure.
Performance characteristics are competitive with hand-written backends. Encore's runtime adds minimal overhead to request processing, and the generated infrastructure uses efficient cloud-native services rather than over-provisioned generic compute. The Go runtime in particular produces lean, fast executables suitable for latency-sensitive applications.
The community and ecosystem are growing rapidly with over 11,000 GitHub stars. Encore's documentation is comprehensive with tutorials covering common backend patterns including authentication, file uploads, background jobs, and microservice communication. The Discord community provides responsive support from both the core team and experienced users.