{"id":21658273,"url":"https://github.com/tsirysndr/fluent-circleci","last_synced_at":"2026-05-10T15:33:09.212Z","repository":{"id":189274996,"uuid":"679707358","full_name":"tsirysndr/fluent-circleci","owner":"tsirysndr","description":"Generate CircleCI YAML config from a simple declarative syntax in TypeScript 🛠️ 💻 ✨","archived":false,"fork":false,"pushed_at":"2024-05-25T14:38:28.000Z","size":44,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-25T19:40:26.835Z","etag":null,"topics":["cicd","circleci","deno","deno-module","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:45:39.000Z","updated_at":"2024-05-25T14:36:37.000Z","dependencies_parsed_at":"2023-08-19T05:28:10.189Z","dependency_job_id":"35952bb3-aea2-4924-8e5b-59a1b32d8058","html_url":"https://github.com/tsirysndr/fluent-circleci","commit_stats":null,"previous_names":["tsirysndr/fluent-circleci"],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsirysndr%2Ffluent-circleci","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsirysndr%2Ffluent-circleci/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsirysndr%2Ffluent-circleci/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/tsirysndr%2Ffluent-circleci/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/tsirysndr","download_url":"https://codeload.github.com/tsirysndr/fluent-circleci/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244555623,"owners_count":20471470,"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":["cicd","circleci","deno","deno-module","pipeline","typescript"],"created_at":"2024-11-25T09:29:00.250Z","updated_at":"2026-05-10T15:33:04.155Z","avatar_url":"https://github.com/tsirysndr.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# Fluent CircleCI\n\n[![deno module](https://shield.deno.dev/x/fluent_circleci)](https://deno.land/x/fluent_circleci)\n![deno compatibility](https://shield.deno.dev/deno/^1.34)\n[![](https://jsr.io/badges/@tsirysndr/fluent-circleci)](https://jsr.io/@tsirysndr/fluent-circleci)\n[![](https://img.shields.io/codecov/c/gh/tsirysndr/fluent-circleci)](https://codecov.io/gh/tsirysndr/fluent-circleci)\n\nFluent CircleCI is a deno module for generating CircleCI configuration files easily and fluently.\n\n## 🚀 Usage\n\n```typescript\nimport { CircleCI, Job } from \"https://deno.land/x/fluent_circleci/mod.ts\";\n\nconst circleci = new CircleCI();\n\nconst build = new Job()\n  .docker([{ image: \"cimg/node:lts\" }])\n  .step(\"checkout\")\n  .step({\n    setup_remote_docker: {\n      docker_layer_caching: true,\n    },\n  })\n  .step({\n    run: {\n      name: \"Install deps\",\n      command: \"npm ci\",\n    },\n  })\n  .step({\n    run: {\n      name: \"Dagger Pipeline\",\n      command: \"node index.mjs\",\n    },\n  });\n\ncircleci.jobs({ build }).workflow(\"dagger\", [\"build\"]);\n\ncircleci.save(\".circleci/config.yml\");\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsirysndr%2Ffluent-circleci","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftsirysndr%2Ffluent-circleci","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftsirysndr%2Ffluent-circleci/lists"}