devlens 1.2.0 copy "devlens: ^1.2.0" to clipboard
devlens: ^1.2.0 copied to clipboard

Flutter Dependency Explorer. A developer tool to analyze any Flutter or Dart project and generate an interactive architecture and dependency visualization map.

example/example.dart

import 'package:devlens/cli/command_runner.dart';

/// This is an example of how to invoke the devlens scanner programmatically.
/// 
/// You can run this file directly using `dart run example/example.dart`
void main() async {
  // Initialize the CLI runner
  final runner = DevLensCommandRunner();
  
  // Run the 'scan' command on the current directory
  // This behaves identically to running `devlens scan --path .`
  print('Running devlens scan programmatically...');
  await runner.run(['scan', '--path', '.']);
}
1
likes
160
points
121
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Flutter Dependency Explorer. A developer tool to analyze any Flutter or Dart project and generate an interactive architecture and dependency visualization map.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

analyzer, args, path, yaml

More

Packages that depend on devlens