freeport 0.0.2
freeport: ^0.0.2 copied to clipboard
A fast and reliable Dart library for finding available network ports. Supports parallel port checking, preferred ports selection, custom hostnames and detailed port availability verification.
import 'package:freeport/freeport.dart';
main() async {
final port = await freePort();
print('Free port: $port');
}