Skip to main content

One post tagged with "dbang"

View All Tags

ยท One min read
Libing Chen

DBang is simple Deno CLI script management tool based on GitHub.

How to start? Create a repo with dbang-catalog under your GitHub account, such as username/dbang-catalog

Write your Deno scripts under the repo, then add dbang-catalog.json under the repo to manage your scripts.

{
"aliases": {
"hello": {
"script-ref": "hello.ts",
"description": "Hello world"
},
"myip": {
"script-ref": "myip.ts",
"description": "Display your IP address by https://httpbin.org/ip",
"deno": "1.17.1",
"permissions": [
"allow-net"
]
}
}
}

From terminal, execute dbang helllo@username

Idea from jbangdev and thank you JBang!