https://github.com/cesarferreira/fpm
WIP - Flutter Package Manager
https://github.com/cesarferreira/fpm
dart flutter manager package package-manager
Last synced: about 2 months ago
JSON representation
WIP - Flutter Package Manager
- Host: GitHub
- URL: https://github.com/cesarferreira/fpm
- Owner: cesarferreira
- License: mit
- Created: 2020-06-26T02:54:06.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-25T15:25:53.000Z (almost 5 years ago)
- Last Synced: 2025-01-26T14:22:57.413Z (4 months ago)
- Topics: dart, flutter, manager, package, package-manager
- Language: Dart
- Homepage: https://pub.dev/packages/fpm
- Size: 1.03 MB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Flutter Package Manager
> Flutter Package Manager, powerfull package management via CLI, add/search/top/favorite packages!
## Install
```bash
> pub global activate fpm
```## Usage
Without verbose
```bash
$ fpm top
$ fpm favorites
$ fpm search html
$ fpm search html --verbose
``````bash
# Install a specific version
$ fpm add http# Install to dev_dependencies
$ fpm add --dev http
``````bash
❯ fpm --help
Flutter Version Management: A cli to manage Flutter packages.Usage: fpm [arguments]
Global options:
-h, --help Print this usage information.
--verbose Print verbose output.Available commands:
add Add package SDK Version
favorites List of the flutter favorite packages
search Search dart packages
top List the top used dart packagesRun "fpm help " for more information about a command.
```