tailf 1.1.2 copy "tailf: ^1.1.2" to clipboard
tailf: ^1.1.2 copied to clipboard

A pure dart implementation of `tail -f` providing a stream of `Uint8Bytes`, `String`, or split by lines.

example/main.dart

import 'dart:io';
import 'package:tailf/tailf.dart';

void main() async {
  final tail = TailFile(File('example/main.dart'), seekToEnd: false);
  await for (var line in tail.asLines) {
    print(line);
  }
}
3
likes
160
points
14
downloads

Publisher

verified publishermcdole.org

Weekly Downloads

A pure dart implementation of `tail -f` providing a stream of `Uint8Bytes`, `String`, or split by lines.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

args, collection, path

More

Packages that depend on tailf