ascii_art_tree
A minimalistic ASCII Art Tree generator with multiple styles.
Usage
import 'package:ascii_art_tree/ascii_art_tree.dart';
void main() async {
var paths = [
'/workspace/project-x/src/base.dart',
'/workspace/project-x/src/entities.dart',
'/workspace/project-x/src/system.dart',
'/workspace/project-x/assets/file2.txt',
'/workspace/project-x/assets/images/imgX.png',
'/workspace/project-x/assets/images/imgY.png',
];
var asciiArtTree = ASCIIArtTree.fromStringPaths(
paths,
style: ASCIIArtTreeStyle.elegant,
);
var tree = asciiArtTree.generate();
print(tree);
}
Output in elegant
style (default):
/
└─┬─ workspace
└─┬─ project-x
├─┬─ src
│ ├──> base.dart
│ ├──> entities.dart
│ └──> system.dart
└─┬─ assets
├──> file2.txt
└─┬─ images
├──> imgX.png
└──> imgY.png
Output in dots
style:
/
.workspace
...project-x
.....src
.......base.dart
.......entities.dart
.......system.dart
.....assets
.......file2.txt
.......images
.........imgX.png
.........imgY.png
Output in spaces
style:
/
workspace
project-x
src
base.dart
entities.dart
system.dart
assets
file2.txt
images
imgX.png
imgY.png
CLI Tool
You can utilize the CLI tool ascii_art_tree
with ease on any platform supported by Dart.
To activate the CLI tool just run:
dart pub global activate ascii_art_tree
Then you can create a ASCII Art Tree from the terminal.
CLI Examples
-
Read a text file with path entries and generate the ASCII Art Tree in
elegant
style:ascii_art_tree /dir/paths.txt --elegant
-
Read a text file with path entries using ":" delimiter:
ascii_art_tree /dir/paths.txt :
-
Read a JSON file:
ascii_art_tree /dir/tree.json
Forcing from JSON:
ascii_art_tree /dir/tree.txt --from-json
-
Generating a JSON output:
ascii_art_tree /dir/paths.txt : --to-json
Features and bugs
Please file feature requests and bugs at the issue tracker.
Author
Graciliano M. Passos: gmpassos@GitHub.
Sponsor
Don't be shy, show some love, and become our GitHub Sponsor. Your support means the world to us, and it keeps the code caffeinated! ☕✨
Thanks a million! 🚀😄
License
Dart free & open-source license.
Libraries
- ascii_art_tree
- ASCII Art Tree library