Skip to content
Tech News
← Back to articles

MiniStack (replacement for LocalStack)

read original get MiniStack Cloud Development Kit β†’ more articles
Why This Matters

MiniStack offers a significant advancement for the tech industry by enabling developers to run real AWS services locally, such as RDS, ElastiCache, and ECS, without relying on mock endpoints. This enhances testing accuracy and reduces deployment surprises, benefiting both developers and consumers by ensuring more reliable cloud applications.

Key Takeaways

Built different

Where it matters most β€” RDS, ElastiCache, and ECS run real Docker containers. No fake endpoints, no stubbed responses.

🐘 Real databases via RDS CreateDBInstance spins up an actual Postgres or MySQL Docker container. Connect with psycopg2 β€” it's a real database.

πŸ”΄ Real Redis via ElastiCache CreateCacheCluster starts an actual Redis container. Use redis-py, run SUBSCRIBE, use it as your session store.

🐳 Real containers via ECS RunTask pulls and starts real Docker containers via the Docker socket. Test your ECS task definitions locally.

πŸ” Real SQL via Athena Queries execute via DuckDB when installed. Query S3 data with actual SQL, get actual result sets back. Falls back to mock results without it.

πŸ”Œ Full SDK compatibility Works with boto3, AWS CLI, Terraform, CDK, Pulumi β€” any tool that speaks the AWS API.