apps_bouncer 1.0.1 copy "apps_bouncer: ^1.0.1" to clipboard
apps_bouncer: ^1.0.1 copied to clipboard

Application that keeps track of running processes, snitching bad-behaving ones to the user, who can choose to kill them.

example/apps_bouncer.dart

import 'package:apps_bouncer/apps_bouncer.dart' as bouncer;
import 'package:yaml/yaml.dart';

main() async {
  final yaml = loadYaml('''
  periodSeconds: 5
  logLevel: error
  ''');
  final config = bouncer.BouncerConfig.fromJson(yaml);
  print(config);

  // run the bouncer
  await bouncer.run(config);
}
1
likes
150
pub points
0%
popularity

Publisher

unverified uploader

Application that keeps track of running processes, snitching bad-behaving ones to the user, who can choose to kill them.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

logging, schemake, yaml

More

Packages that depend on apps_bouncer