0.1.0 • Published 9 years ago
anyport v0.1.0
anyport
A command line tool to get a list of available ports.
Installation
npm i anyportUsage
Usage: anyport [options]
Options:
-h, --help output usage information
-V, --version output the version number
--min [n] The minimum port number, default: 8000
--max [n] The maximum port number, at most 65535
--num [n] The number of the available ports, default: 1By default, it will print one available port.
$ anyport
8000With the --num option, you can specify how many ports you want to get. The port numbers are delimited by comma.
$ anyport --num 10
8000,8001,8002,8003,8004,8005,8006,8007,8008,8009Also, you can specify the range of the generated ports with the --min and --max options.
$ anyport --min 9000
9000
$ anyport --min 9000 --max 9005 --num 10
9000,9001,9002,9003,9004,9005License
MIT.
0.1.0
9 years ago