den 0.0.2 copy "den: ^0.0.2" to clipboard
den: ^0.0.2 copied to clipboard

outdatedDart 1 only

Interact with pubspecs.

den pub package Build Status #

Den allows you to do pub-like things, such as making updates to 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


# 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.