{"id":21658266,"url":"https://github.com/tsirysndr/fluent-aws-codepipeline","last_synced_at":"2026-05-05T14:07:17.752Z","repository":{"id":188985266,"uuid":"679707747","full_name":"tsirysndr/fluent-aws-codepipeline","owner":"tsirysndr","description":"Generate AWS CodePipeline YAML config from a simple declarative syntax in TypeScript 🛠️ 💻 ✨","archived":false,"fork":false,"pushed_at":"2024-02-29T21:46:49.000Z","size":46,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-25T16:41:38.732Z","etag":null,"topics":["aws","aws-codepipeline","cicd","deno","deno-module","devops","pipeline","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/tsirysndr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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-17T12:46:37.000Z","updated_at":"2023-08-18T08:19:17.000Z","dependencies_parsed_at":"2024-02-29T21:59:20.523Z","dependency_job_id":null,"html_url":"https://github.com/tsirysndr/fluent-aws-codepipeline","commit_stats":null,"previous_names":["tsirysndr/fluent-aws-codepipeline"],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsirysndr%2Ffluent-aws-codepipeline","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsirysndr%2Ffluent-aws-codepipeline/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsirysndr%2Ffluent-aws-codepipeline/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsirysndr%2Ffluent-aws-codepipeline/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tsirysndr","download_url":"https://codeload.github.com/tsirysndr/fluent-aws-codepipeline/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244555612,"owners_count":20471467,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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-codepipeline","cicd","deno","deno-module","devops","pipeline","typescript"],"created_at":"2024-11-25T09:28:59.097Z","updated_at":"2026-05-05T14:07:12.705Z","avatar_url":"https://github.com/tsirysndr.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# Fluent AWS CodePipeline\n\n[![deno module](https://shield.deno.dev/x/fluent_aws_codepipeline)](https://deno.land/x/fluent_aws_codepipeline)\n![deno compatibility](https://shield.deno.dev/deno/^1.34)\n[![](https://img.shields.io/codecov/c/gh/tsirysndr/fluent-aws-codepipeline)](https://codecov.io/gh/tsirysndr/fluent-aws-codepipeline)\n\nFluent AWS CodePipeline is a deno module for generating AWS CodePipeline configuration (`buildspec.yml`) files easily and fluently.\n\n## 🚀 Usage\n\n```typescript\nimport { BuildSpec } from \"https://deno.land/x/fluent_aws_codepipeline/mod.ts\";\n\nconst buildspec = new BuildSpec();\n\nbuildspec\n  .phase(\"install\", {\n    \"runtime-versions\": {\n      golang: \"1.13\",\n    },\n  })\n  .phase(\"build\", {\n    commands: [\n      \"echo Build started on `date`\",\n      \"echo Compiling the Go code\",\n      \"go build hello.go\",\n    ],\n  })\n  .phase(\"post_build\", {\n    commands: [\"echo Build completed on `date`\"],\n  })\n  .artifacts({\n    files: [\"hello\"],\n  });\n\nconsole.log(buildspec.toString());\n\nbuildspec.save(\"buildspec.yml\");\n\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsirysndr%2Ffluent-aws-codepipeline","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftsirysndr%2Ffluent-aws-codepipeline","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsirysndr%2Ffluent-aws-codepipeline/lists"}