den 0.1.0 den: ^0.1.0 copied to clipboard
Den is a place for doing pub-related things, like updating your pubspec, from within the comfort and convenience of your own home (if your home is the command line).
den #
Den is a place for doing pub-related things, like updating your pubspec, from within the comfort and convenience of your own home (if your home is the command line).
##Install
pub global activate den
##Usage
# Note: `den ...` requires Dart 1.7, on Dart 1.6 use `pub global run den ...`
# Install dependencies (defaults to '>={latest stable} <{next breaking}')
den install polymer browser
den install unittest --dev
den install polymer#any
den install git://github.com/owner/repo.git -sgit
den install git://github.com/owner/repo#ref -sgit
den install path/to/foo -spath
# Uninstall dependencies
den uninstall junk kludge
# Keep dependencies up-to-date
# Show outdated (all by deafult)
den fetch
den fetch polymer
# Update outdated to '>={latest stable} <{next breaking}' (all by default)
den pull
den pull polymer
# Install comprehensive TAB-completion for den
den completion install
# Complete commands, options, package names, etc.
den i[TAB] -> install
den install unit[TAB] -> unittest
den uninstall j[TAB] -> junk
den fetch p[TAB] -> polymer
den pull p[TAB] -> polymer
##Inspiration
den install
was inspired by npm install --save
and bower install --save
den fetch
and den pull
were inspired by david
and david update
.