summaryrefslogtreecommitdiff
path: root/deps/npm/doc/api/npm-uninstall.md
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2013-07-12 08:56:59 -0700
committerisaacs <i@izs.me>2013-07-12 08:56:59 -0700
commit9da67fa5198f3c0839904ae05cbfe88c61b3ad09 (patch)
tree61c03f98b7c2ae549f67c01e1afe6dcbe84847d6 /deps/npm/doc/api/npm-uninstall.md
parentf88b8dad84cd8f37000e55f0b5de7963cbb252cf (diff)
downloadnode-new-9da67fa5198f3c0839904ae05cbfe88c61b3ad09.tar.gz
npm: Upgrade to 1.3.3
Diffstat (limited to 'deps/npm/doc/api/npm-uninstall.md')
-rw-r--r--deps/npm/doc/api/npm-uninstall.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/deps/npm/doc/api/npm-uninstall.md b/deps/npm/doc/api/npm-uninstall.md
new file mode 100644
index 0000000000..4505295b3b
--- /dev/null
+++ b/deps/npm/doc/api/npm-uninstall.md
@@ -0,0 +1,16 @@
+npm-uninstall(3) -- uninstall a package programmatically
+========================================================
+
+## SYNOPSIS
+
+ npm.commands.uninstall(packages, callback)
+
+## DESCRIPTION
+
+This acts much the same ways as uninstalling on the command-line.
+
+The 'packages' parameter is an array of strings. Each element in the array is
+the name of a package to be uninstalled.
+
+Finally, 'callback' is a function that will be called when all packages have been
+uninstalled or when an error has been encountered.