Cliffy
CLIFFY
The
Framework
for
Building
Interactive
Commandline
Tools
with
Deno
Create
complex
and
type-safe
commandline
tools
with
build-in
input
validation,
auto
generated
help,
shell
completions,
beautiful
prompts
and
more...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { Command } from "https://deno.land/x/cliffy@v1.0.0-rc.4/command/mod.ts";
import { serve } from "https://deno.land/std@0.221.0/http/server.ts";

await new Command()
  .name("reverse-proxy")
  .description("A simple reverse proxy example cli.")
  .version("v1.0.0")
  .option("-p, --port <port:number>", "The port number for the local server.", {
    default: 8080,
  })
  .option("--host <hostname>", "The host name for the local server.", {
    default: "localhost",
  })
  .arguments("[domain]")
  .action(async ({ port, host }, domain = "deno.land") => {
    console.log(`Listening on http://${host}:${port}`);
    await serve((req: Request) => {
      const url = new URL(req.url);
      url.protocol = "https:";
      url.hostname = domain;
      url.port = "443";

      console.log("Proxy request to:", url.href);
      return fetch(url.href, {
        headers: req.headers,
        method: req.method,
        body: req.body,
      });
    }, { hostname: host, port });
  })
  .parse();Copy
$ deno run --allow-net=localhost:8080,deno.land https://deno.land/x/cliffy@v1.0.0-rc.4/examples/command.tsCopy