{"id":21431931,"url":"https://github.com/mikaeelkhalid/aws-cdk-appsync-serverless-boilerplate","last_synced_at":"2026-04-17T04:34:03.994Z","repository":{"id":185367002,"uuid":"673335355","full_name":"mikaeelkhalid/aws-cdk-appsync-serverless-boilerplate","owner":"mikaeelkhalid","description":"This repository contains a boilerplate to kickstart your serverless journey with AWS CDK and AppSync.","archived":false,"fork":false,"pushed_at":"2023-08-03T13:40:55.000Z","size":59,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-10-09T06:35:05.294Z","etag":null,"topics":["aws","aws-appsync","aws-cdk","aws-dynamodb","aws-lambda","serverless","typescript"],"latest_commit_sha":null,"homepage":"https://blog.mikaeels.com/appsync-serverless-application-aws-cdk","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mikaeelkhalid.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-01T11:56:13.000Z","updated_at":"2025-03-09T15:38:59.000Z","dependencies_parsed_at":null,"dependency_job_id":"8adb97b2-34b5-4c9f-aa57-f7be52b7f5fb","html_url":"https://github.com/mikaeelkhalid/aws-cdk-appsync-serverless-boilerplate","commit_stats":null,"previous_names":["mikaeelkhalid/aws-cdk-appsync-serverless-boilerplate"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mikaeelkhalid/aws-cdk-appsync-serverless-boilerplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikaeelkhalid%2Faws-cdk-appsync-serverless-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikaeelkhalid%2Faws-cdk-appsync-serverless-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikaeelkhalid%2Faws-cdk-appsync-serverless-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikaeelkhalid%2Faws-cdk-appsync-serverless-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mikaeelkhalid","download_url":"https://codeload.github.com/mikaeelkhalid/aws-cdk-appsync-serverless-boilerplate/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikaeelkhalid%2Faws-cdk-appsync-serverless-boilerplate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31915333,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"online","status_checked_at":"2026-04-17T02:00:06.879Z","response_time":62,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["aws","aws-appsync","aws-cdk","aws-dynamodb","aws-lambda","serverless","typescript"],"created_at":"2024-11-22T23:15:31.261Z","updated_at":"2026-04-17T04:34:03.977Z","avatar_url":"https://github.com/mikaeelkhalid.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AWS CDK AppSync Serverless Boilerplate\n\n[![Mikaeel Khalid](https://badgen.now.sh/badge/by/mikaeelkhalid/purple)](https://github.com/mikaeelkhalid)\n\nThis repository contains a boilerplate to kickstart your serverless journey with AWS CDK and AppSync.\n\n## Features\n\n- AWS CDK-based infrastructure setup\n- AWS AppSync configuration for GraphQL endpoints\n- Serverless functions with AWS Lambda, and AWS DynamoDB\n- Easy deployment scripts\n\n## Prerequisites\n\n- [Node.js](https://nodejs.org/)\n- [AWS CLI](https://aws.amazon.com/cli/)\n- [AWS CDK Toolkit](https://docs.aws.amazon.com/cdk/latest/guide/cli.html)\n\n## Getting Started\n\n1. **Clone the repository:**\n\n   ```bash\n   git clone https://github.com/mikaeelkhalid/aws-cdk-appsync-serverless-boilerplate.git\n   cd aws-cdk-appsync-serverless-boilerplate\n   ```\n\n2. **Install dependencies:**\n\n   ```bash\n   npm install\n   ```\n\n3. **Deploy to AWS:**\n\n   First, you need to bootstrap the AWS environment to use AWS CDK.\n\n   ```bash\n   cdk bootstrap\n   ```\n\n   Then, deploy the stack.\n\n   ```bash\n   cdk deploy\n   ```\n\n## Usage\n\nAfter deploying, you can use the following queries and mutations in the AWS AppSync console:\n\n### Query\n\n```graphql\nquery listNotes {\n  listNotes {\n    id\n    name\n    completed\n  }\n}\n```\n\n### Mutation\n\n```graphql\nmutation createNote {\n  createNote(note: { id: \"01\", name: \"Note Name\", completed: false }) {\n    id\n    name\n    completed\n  }\n}\n```\n\n---\n\nFeel free to adjust or refine as needed!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikaeelkhalid%2Faws-cdk-appsync-serverless-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmikaeelkhalid%2Faws-cdk-appsync-serverless-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikaeelkhalid%2Faws-cdk-appsync-serverless-boilerplate/lists"}