Public
Script
Readme

Example CLI hosted on Val Town

Install with Deno on your computer (name it whatever you want):

deno install -n hello https://esm.town/v/jxnblk/hello_cli

Run:

hello

Uninstall:

deno uninstall hello

Read the deno install docs

1
2
3
4
5
6
7
8
9
10
// deno install -n hello https://esm.town/v/jxnblk/hello_cli
export default function main() {
const name = Deno.args[0] || "";
console.log(`hello ${name}`);
}
if (import.meta.main) {
main();
}
Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
Comments
Nobody has commented on this val yet: be the first!
September 6, 2024