A comprehensive comparison of available services on each provider (AWS, Azure, GCP) and their equivalent for various use cases.
AI generated content. Cloud services evolve rapidly. Always verify specific capabilities in official documentation.
- Framework: Astro (v5)
- Styling: Tailwind CSS (v4) + DaisyUI (v5)
- Icons: Lucide via
astro-icon - Data: Content Collections (JSON)
src/content/services/: Service data grouped by category (e.g.,ai-ml.json).src/content/categories.json: Category definitions and metadata.src/pages/index.astro: Main application logic.src/components/: Reusable UI components (ServiceTable,Sidebar).
To add or update services:
- Navigate to
src/content/services/. - Open the relevant category file (e.g.,
compute.json). - Add a new object to the
itemsarray:{ "feature": "Service Description", "aws": "AWS Service Name", "azure": "Azure Service Name", "gcp": "GCP Service Name", "formerly": { "azure": "Old Name" } // Optional }
- Node.js (v18+)
npm installStart the development server:
npm run devBuild for production:
npm run build