{"id":21331444,"url":"https://github.com/eibens/edcb","last_synced_at":"2026-04-02T18:53:10.573Z","repository":{"id":62422147,"uuid":"378681034","full_name":"eibens/edcb","owner":"eibens","description":"A build tool and task runner for Deno.","archived":false,"fork":false,"pushed_at":"2022-01-30T17:24:34.000Z","size":786,"stargazers_count":0,"open_issues_count":15,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-27T02:44:25.563Z","etag":null,"topics":["build","ci","deno","formatting","github-actions","linting","testing","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/eibens.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-06-20T15:39:25.000Z","updated_at":"2021-12-29T15:31:33.000Z","dependencies_parsed_at":"2022-11-01T17:31:50.401Z","dependency_job_id":null,"html_url":"https://github.com/eibens/edcb","commit_stats":null,"previous_names":[],"tags_count":33,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eibens%2Fedcb","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eibens%2Fedcb/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eibens%2Fedcb/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/eibens%2Fedcb/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/eibens","download_url":"https://codeload.github.com/eibens/edcb/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243809848,"owners_count":20351407,"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":["build","ci","deno","formatting","github-actions","linting","testing","typescript"],"created_at":"2024-11-21T22:33:10.201Z","updated_at":"2025-12-30T22:40:29.504Z","avatar_url":"https://github.com/eibens.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [edcb]\n\n[edcb] is a build tool and task runner for Deno. It has support for formatting,\nlinting, testing, code coverage, bundling, and more, and it can be used via\ncommand line or TypeScript import.\n\n\u003c!-- badges --\u003e\n\n[![License](https://img.shields.io/github/license/eibens/edcb?color=informational)](LICENSE)\n[![deno.land/x](https://img.shields.io/badge/x/edcb-informational?logo=deno\u0026label)](https://deno.land/x/edcb)\n[![Repository](https://img.shields.io/github/v/tag/eibens/edcb?label\u0026logo=github)](https://github.com/eibens/edcb)\n[![ci](https://github.com/eibens/edcb/actions/workflows/ci.yml/badge.svg)](https://github.com/eibens/edcb/actions/workflows/ci.yml)\n[![codecov](https://codecov.io/gh/eibens/edcb/branch/master/graph/badge.svg?token=OV98O91EJ1)](https://codecov.io/gh/eibens/edcb)\n\n\u003c!-- /badges --\u003e\n\n![edcb in action](docs/video.gif)\n\n# Features\n\n- Formatting, linting, and testing of TypeScript code.\n- Configurable HTTP server for developing web apps.\n- File watcher with automatic reload via WebSockets.\n- Dynamic generation of JavaScript bundles from TypeScript modules.\n- Optional coverage file generation and upload to [codecov.io].\n- CLI with rich diagnostic output (sub-processes, call-tree, performance).\n- TypeScript API for [configuration and version locking](#config).\n- Easy CI integration (see [ci.yml](.github/workflows/ci.yml)).\n\n# Usage\n\nInstall the [edcb] CLI with [Deno]:\n\n```sh\ndeno install -f -A --unstable https://deno.land/x/edcb/cli.ts\n```\n\nThese are basic commands:\n\n```sh\n# show help text\nedcb --help\n\n# run formatter, linter, tests, and bundler\nedcb build\n\n# start development server\nedcb serve\n```\n\n## Config\n\nBefore it does anything else, [edcb] will look for the [dev.ts](dev.ts) module\nin the working directory and run it if it exists. This allows one to lock a\nparticular [edcb] version to a project, provide default values for options, and\nadd complex configuration such as the `bundles` option. The `edcb` CLI then\nessentially becomes an alias for this:\n\n```sh\ndeno run -A --unstable dev.ts [...args]\n```\n\nThe [mod.ts](mod.ts) module exports the `cli` function, which can be used to run\nthe CLI using TypeScript. The specified options are used as defaults. For\nexample, one can specify the `ignore` option, which will then be used if the\n`--ignore` option was not provided on the command-line. This is an example of a\n`dev.ts` file that uses [edcb]'s TypeScript API:\n\n```ts\n/**\n * Always import a specific version of edcb.\n * Otherwise, your builds might break when edcb updates.\n *\n * @example\n *   import { cli } from \"https://deno.land/x/edcb@v1.0.0/mod.ts\";\n */\nimport { cli } from \"./mod.ts\";\n\nawait cli({\n  ignore: \"index.js\",\n  reload: true,\n  bundles: [{\n    source: \"index.ts\",\n    target: \"index.js\",\n  }],\n});\n```\n\n[edcb]: #\n[Deno]: https://deno.land\n[codecov.io]: https://codecov.io\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feibens%2Fedcb","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feibens%2Fedcb","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feibens%2Fedcb/lists"}