
Nitric Has a Free API: Build Cloud-Agnostic Apps That Deploy to AWS, GCP, or Azure
Nitric is a cloud-agnostic framework that lets you define APIs, databases, queues, and storage in code — then deploy the same app to AWS, GCP, or Azure without changing a line. Why Nitric Matters Cloud lock-in is real. Your AWS Lambda functions cannot run on GCP Cloud Run. Your DynamoDB code cannot switch to Firestore. Nitric abstracts cloud services behind a unified API. What you get for free: Write once, deploy to AWS, GCP, or Azure Declare resources in code: APIs, buckets, topics, schedules, secrets Automatic IAM permissions (no YAML policies) Local development with full emulation TypeScript, Python, Go, Java, and Dart SDKs Pulumi/Terraform under the hood — full IaC compatibility Quick Start # Install curl -fsSL https://nitric.io/install | bash # Create project nitric new my-api ts-starter cd my-api # Run locally nitric start # Deploy to AWS nitric up --target aws # Deploy to GCP nitric up --target gcp HTTP API import { api } from " @nitric/sdk " ; const mainApi = api ( " main " );
Continue reading on Dev.to DevOps
Opens in a new tab



