Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 896 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 896 Bytes

deno_is_free_port

tag Build Status license

Return true if a port is free.

Usage

import isFreePort from "https://deno.land/x/is_free_port/mod.ts";

isFreePort(21);
isFreePort(8080);
isFreePort(1234);

Example

deno run --allow-net https://deno.land/x/is_free_port/example.ts

License

deno_is_free_port is released under the MIT License. See the bundled LICENSE file for details.