diff --git a/net/get_network_address.ts b/net/get_network_address.ts index e39021964..b81480d41 100644 --- a/net/get_network_address.ts +++ b/net/get_network_address.ts @@ -1,5 +1,7 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. /** + * **UNSTABLE**: New API, yet to be vetted. + * * Gets the IPv4 or IPv6 network address of the machine. * * This is inspired by the util of the same name in @@ -29,6 +31,8 @@ * * Deno.serve({ port: 0, hostname }, () => new Response("Hello, world!")); * ``` + * + * @experimental */ export function getNetworkAddress( family: Deno.NetworkInterfaceInfo["family"] = "IPv4",