Loading...
Loading...
Developers are building compact, open-source AWS emulators to restore cost‑effective local integration testing after LocalStack’s licensing changes. Hiraeth targets SQS first: a tiny (~4MB) Docker image that accepts SigV4 requests, stores state in SQLite, and includes a web UI for inspecting queues and messages—designed for fast startup and CI-friendly local use. Parallel projects like Fakecloud offer broader service coverage and richer cross-service behavior. Together these tools emphasize minimal resource use, AWS SDK compatibility, and offline testing, giving teams alternatives to heavier commercial offerings and reducing friction in cloud-native development and testing workflows.
Developers and ops teams need reliable local AWS-compatible tooling for integration tests and CI; lightweight emulators reduce cost and complexity compared with changing commercial offerings. SQS-focused emulators like Hiraeth can speed up test cycles and simplify replication of message-driven architectures locally.
Dossier last updated: 2026-05-12 16:15:02
Hiraeth is a local AWS emulator focused on fast integration testing, currently targeting SQS compatibility. It accepts SigV4-signed SDK requests at a local HTTP endpoint, stores state in SQLite, and offers an optional web admin UI for inspecting queues, messages, attributes, and tags. The project provides Docker/Docker Compose images (also published to GitHub Container Registry), a quickstart with seeded test credentials, and instructions for running from source with environment-configurable ports and database path. Many SQS operations are implemented (create/list/send/receive/delete, visibility changes, batch operations), with varying parity to AWS noted. Hiraeth is explicitly for local development and not a production AWS replacement.
A developer launched Hiraeth, a lightweight AWS emulator focused initially on SQS as an alternative to LocalStack after recent pricing/licensing changes. The project emphasizes a small 4MB Docker image, instant startup, AWS SigV4 authentication, and an admin UI for development and troubleshooting. Most of the SQS API is already implemented, with additional AWS services planned. This matters for teams seeking low-cost, fast local testing of AWS services and for developers wary of vendor lock-in or escalating costs from LocalStack. Hiraeth could reduce development friction and resource overhead when building or testing cloud-native apps locally.
A developer published Hiraeth, a lightweight AWS emulator focused on SQS, as an alternative after LocalStack changed its pricing/licensing. The project aims for a minimal footprint—a 4MB Docker image with instant startup—implements AWS SigV4 authentication, provides a small admin UI for debugging, and supports most of the SQS API with more services planned. The post appeared on Hacker News and prompted questions about use cases (local integration testing vs. using real AWS with smaller instances) and suggestions like adding simulated billing. Hiraeth matters because teams seeking low-cost, local emulation for cloud-dependent development and CI may prefer compact, fast emulators over heavier commercial tools.
Fakecloud is a new free, open-source local AWS emulator that provides a single-binary, fully local testing environment compatible with AWS SDKs at http://localhost:4566. It was created after LocalStack moved its community edition to a proprietary image in March 2026. Fakecloud implements 22 AWS services (1,668 operations) with Smithy-model validation, Terraform TestAcc compatibility, and real cross-service wiring (e.g., EventBridge→Step Functions, S3→Lambda). It runs stateful components using Docker where needed (Lambda runtimes, RDS, ElastiCache), offers first-party test SDKs for major languages, and optional SigV4 and IAM enforcement. The project aims to preserve offline, account-free integration testing for teams relying on AWS-like infrastructure locally.