freeport 1.0.1
freeport: ^1.0.1 copied to clipboard
Fast and reliable Dart library for finding available network ports with parallel checking and custom hostname support.
import 'package:freeport/freeport.dart';
main() async {
final port = await freePort();
print('Free port: $port');
}