Network utilities.
import { getAvailablePort } from "@std/net";const command = new Deno.Command(Deno.execPath(), { args: ["test.ts", "--port", getAvailablePort().toString()],});// ... Copy
import { getAvailablePort } from "@std/net";const command = new Deno.Command(Deno.execPath(), { args: ["test.ts", "--port", getAvailablePort().toString()],});// ...
Network utilities.