packages 0.1.5 copy "packages: ^0.1.5" to clipboard
packages: ^0.1.5 copied to clipboard

outdatedDart 1 only

Add your description for packages

Packages #

Resolves a package name to its path on your HD

Use as library #

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

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    

Use as cmdline application #

Usage: packages [options] <packagename>
    -h, --[no-]help       Shows this help information
    -l, --[no-]list       Lists all packages
    -v, --[no-]verbose    More package details

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

Install 'Packages'

    pub global activate packages

Update 'Packages'

    # activate packages again
    pub global activate packages

Uninstall 'Packages'

    pub global deactivate packages   

###License

Copyright 2016 Michael Mitterer (office@mikemitterer.at),
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.

If this plugin is helpful for you - please (Circle) me or star this repo here on GitHub

1
likes
0
pub points
56%
popularity

Publisher

unverified uploader

Add your description for packages

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

args, console_log_handler, logging, logging_handlers, path

More

Packages that depend on packages