Module net/mod

    Network utilities.

    import { getAvailablePort } from "@std/net";

    const command = new Deno.Command(Deno.execPath(), {
    args: ["test.ts", "--port", getAvailablePort().toString()],
    });

    // ...

    Index