packages

Last updated:

0 purchases

packages Image
packages Images
Add to Cart

Description:

packages

Packages #

Resolves a package name to its path on your HD

Since version v0.3 it also supports pub global activate packages!
Use as library #
pubspec.yaml
...
dependencies:
packages: ^0.1.0

copied to clipboard
import 'package:packages/packages.dart';

final Packages packages = new Packages();
final Package package = packages.resolvePackageUri(
Uri.parse("package:grinder")
);

print(package.packagename); // grinder

print(package.lib.path);
// file:///Users/mikemitterer/.pub-cache/hosted/pub.dartlang.org/grinder-0.8.0+3/lib;

print(package.uri.path);
// file:///Users/mikemitterer/.pub-cache/hosted/pub.dartlang.org/grinder-0.8.0+3/lib;

final Uri resource = await package.resource;
print(resource);
// http://localhost:62232/packages/grinder

print(package.root);
// file:///Users/mikemitterer/.pub-cache/hosted/pub.dartlang.org/grinder-0.8.0+3
copied to clipboard
or if you want a specific file in a package
final Package package = packages.resolvePackageUri(
Uri.parse("package:grinder/src/ansi.dart")
);

print(package.packagename); // grinder

print(package.lib.path);
// file:///Users/mikemitterer/.pub-cache/hosted/pub.dartlang.org/grinder-0.8.0+3/lib;

print(package.uri.path);
// file:///Users/mikemitterer/.pub-cache/hosted/pub.dartlang.org/grinder-0.8.0+3/lib/src/ansi.dart;

final Uri resource = await package.resource;
print(resource);
// http://localhost:62232/packages/grinder/src/ansi.dart

// Global packages
final globals = await packages.globals;
final localPackages = globals.where((final GlobalPackage package) => package.hasPath);
localPackages.forEach((final package) => print(package.path.value));
copied to clipboard
Use as cmdline application #
Usage: packages [options] <packagename>
-h, --[no-]help Shows this help information
-l, --[no-]list Lists all packages
-g, --[no-]globals Lists all global packages
-v, --[no-]verbose More package details

copied to clipboard
Sample output:
packages -v package:grinder/src/ansi.dart

Name: grinder
Lib: file:///Users/mikemitterer/.pub-cache/hosted/pub.dartlang.org/grinder-0.8.0+3/lib
Uri: file:///Users/mikemitterer/.pub-cache/hosted/pub.dartlang.org/grinder-0.8.0+3/lib/src/ansi.dart
Resource: http://localhost:62788/packages/grinder/src/ansi.dart
copied to clipboard
Install 'Packages'
pub global activate packages
copied to clipboard
Update 'Packages'
# activate packages again
pub global activate packages
copied to clipboard
Uninstall 'Packages'
pub global deactivate packages
copied to clipboard
###License
Copyright 2018 Michael Mitterer ([email protected]),
IT-Consulting and Development Limited, Austrian Branch

_____ _
| __ \ | |
| |__) |_ _ ___| | ____ _ __ _ ___ ___
| ___/ _` |/ __| |/ / _` |/ _` |/ _ \/ __|
| | | (_| | (__| < (_| | (_| | __/\__ \
|_| \__,_|\___|_|\_\__,_|\__, |\___||___/
__/ |
|___/

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied. See the License for the specific language
governing permissions and limitations under the License.
copied to clipboard
If this plugin is helpful for you - please (Circle) me
or star this repo here on GitHub

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.