74b08b58b01fe0b7232715cd19e7f4075c6060ba
[platform/upstream/nodejs.git] / deps / npm / html / doc / cli / npm-outdated.html
1 <!doctype html>
2 <html>
3   <title>npm-outdated</title>
4   <meta http-equiv="content-type" value="text/html;utf-8">
5   <link rel="stylesheet" type="text/css" href="../../static/style.css">
6
7   <body>
8     <div id="wrapper">
9 <h1><a href="../cli/npm-outdated.html">npm-outdated</a></h1> <p>Check for outdated packages</p>
10
11 <h2 id="SYNOPSIS">SYNOPSIS</h2>
12
13 <pre><code>npm outdated [&lt;name&gt; [&lt;name&gt; ...]]</code></pre>
14
15 <h2 id="DESCRIPTION">DESCRIPTION</h2>
16
17 <p>This command will check the registry to see if any (or, specific) installed
18 packages are currently outdated.</p>
19
20 <p>The resulting field &#39;wanted&#39; shows the latest version according to the
21 version specified in the package.json, the field &#39;latest&#39; the very latest
22 version of the package.</p>
23
24 <h2 id="SEE-ALSO">SEE ALSO</h2>
25
26 <ul><li><a href="../cli/npm-update.html">npm-update(1)</a></li><li><a href="../misc/npm-registry.html">npm-registry(7)</a></li><li><a href="../files/npm-folders.html">npm-folders(5)</a></li></ul>
27 </div>
28 <p id="footer">npm-outdated &mdash; npm@1.3.15</p>
29 <script>
30 ;(function () {
31 var wrapper = document.getElementById("wrapper")
32 var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
33   .filter(function (el) {
34     return el.parentNode === wrapper
35         && el.tagName.match(/H[1-6]/)
36         && el.id
37   })
38 var l = 2
39   , toc = document.createElement("ul")
40 toc.innerHTML = els.map(function (el) {
41   var i = el.tagName.charAt(1)
42     , out = ""
43   while (i > l) {
44     out += "<ul>"
45     l ++
46   }
47   while (i < l) {
48     out += "</ul>"
49     l --
50   }
51   out += "<li><a href='#" + el.id + "'>" +
52     ( el.innerText || el.text || el.innerHTML)
53     + "</a>"
54   return out
55 }).join("\n")
56 toc.id = "toc"
57 document.body.appendChild(toc)
58 })()
59 </script>