cli_util 0.0.1+2 copy "cli_util: ^0.0.1+2" to clipboard
cli_util: ^0.0.1+2 copied to clipboard

outdatedDart 1 only

A library to help in building Dart command-line apps.

cli_util #

A library to help in building Dart command-line apps.

In particular, cli_util provides a simple, standardized way to get the current SDK directory. Useful, especially, when building client applications that interact with the Dart SDK (such as the analyzer).

Build Status

Usage #

import 'dart:io';

import 'package:cli_util/cli_util.dart';
import 'package:path/path.dart' as path;

main(args) {
  // Get sdk dir from cli_util
  Directory sdkDir = getSdkDir(args);
  
  // Do stuff... For example, print version string
  File versionFile = new File(path.join(sdkDir.path, 'version'));
  print(versionFile.readAsStringSync());
}

Features and bugs #

Please file feature requests and bugs at the issue tracker.

65
likes
0
pub points
98%
popularity

Publisher

verified publishertools.dart.cn

A library to help in building Dart command-line apps.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

path, which

More

Packages that depend on cli_util