{"id":29968149,"url":"https://github.com/thomas3577/dx","last_synced_at":"2025-08-12T17:42:43.308Z","repository":{"id":224325528,"uuid":"689254108","full_name":"thomas3577/dx","owner":"thomas3577","description":"A Deno CLI for lazy typists.","archived":false,"fork":false,"pushed_at":"2025-07-26T06:04:12.000Z","size":151,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-08-04T03:39:18.912Z","etag":null,"topics":["cli","deno"],"latest_commit_sha":null,"homepage":"https://jsr.io/@dx/dx","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/thomas3577.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null}},"created_at":"2023-09-09T08:29:32.000Z","updated_at":"2025-07-26T06:03:01.000Z","dependencies_parsed_at":"2025-04-30T20:35:22.061Z","dependency_job_id":"98f81474-9e05-43d4-abcf-3d666467e5e5","html_url":"https://github.com/thomas3577/dx","commit_stats":null,"previous_names":["thomas3577/dx"],"tags_count":39,"template":false,"template_full_name":null,"purl":"pkg:github/thomas3577/dx","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomas3577%2Fdx","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomas3577%2Fdx/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomas3577%2Fdx/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomas3577%2Fdx/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thomas3577","download_url":"https://codeload.github.com/thomas3577/dx/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomas3577%2Fdx/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":270108536,"owners_count":24528763,"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","status":"online","status_checked_at":"2025-08-12T02:00:09.011Z","response_time":80,"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":["cli","deno"],"created_at":"2025-08-04T03:07:55.514Z","updated_at":"2025-08-12T17:42:43.252Z","avatar_url":"https://github.com/thomas3577.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Deno Task CLI\n\n[![JSR Version](https://jsr.io/badges/@dx/dx)](https://jsr.io/@dx/dx)\n[![JSR Score](https://jsr.io/badges/@dx/dx/score)](https://jsr.io/@dx/dx/score)\n[![ci](https://github.com/thomas3577/dx/actions/workflows/deno.yml/badge.svg)](https://github.com/thomas3577/dx/actions/workflows/deno.yml)\n\nA Deno CLI for lazy typists.\n\n## Install\n\nInstalls the cli globally.\n\n```bash\ndeno install --allow-run -RWESN --unstable-kv -g -n dx jsr:@dx/dx\n```\n\n## Upgrade\n\nUpgrades the dx cli.\n\n```bash\ndx upgrade\n```\n\n## Help\n\n```bash\ndx --help\n```\n\n## Examples\n\n### Run app\n\n```bash\ndx main.ts\n```\n\nwill execute:\n\n```bash\ndeno run main.ts\n```\n\n### Run app (without extention)\n\n```bash\ndx app\n```\n\nwill execute:\n\n```bash\ndeno run app.ts\n```\n\n**Note:**\\\nIf a deno task with this name exists, it will be executed.\n\n### Run app (with args)\n\n```bash\ndx --allow-read app\n```\n\nwill execute:\n\n```bash\ndeno run --allow-read app.ts\n```\n\n### Run Deno Task\n\n**deno.json:**\n\n```json\n{\n  \"tasks\" {\n    \"do\": \"deno lint \u0026\u0026 deno fmt\"\n  }\n}\n```\n\n```bash\ndx do\n```\n\nwill execute:\n\n```bash\ndeno task do\n```\n\n### Run Deno Command\n\n```bash\ndx test\n```\n\nwill execute:\n\n```bash\ndeno test\n```\n\n## Dry-run\n\nIf you only want to see what is being executed, put the argument `--dry-run` at the end of the commands.\n\n```bash\ndx test --dry-run\n```\n\n## Init Deno\n\n```bash\ndx init\n```\n\nwill execute:\n\n```bash\ndeno init\n```\n\n...but...\n\n```bash\ndx init app\n```\n\n...executes a slightly extended init. The value behind `dx init` creates an initial file with this name. This means that `dx init main` creates the file `main.ts` (and `main.test.ts`).\n\n## Limitation\n\n`dx` does not call deno REPL. If you want to start REPL, execute `deno` directly.\n\n`dx -h` or `dx --help` calls the own help. If you want to call the deno help, use the original commands like `deno -h` `deno --help` or `deno help`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthomas3577%2Fdx","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthomas3577%2Fdx","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthomas3577%2Fdx/lists"}