3 <title>outdated</title>
4 <meta http-equiv="content-type" value="text/html;utf-8">
5 <link rel="stylesheet" type="text/css" href="../style.css">
9 <h1><a href="../doc/outdated.html">outdated</a></h1> <p>Check for outdated packages</p>
11 <h2 id="SYNOPSIS">SYNOPSIS</h2>
13 <pre><code>npm outdated [<name> [<name> ...]]</code></pre>
15 <h2 id="DESCRIPTION">DESCRIPTION</h2>
17 <p>This command will check the registry to see if any (or, specific) installed
18 packages are currently outdated.</p>
20 <h2 id="SEE-ALSO">SEE ALSO</h2>
22 <ul><li><a href="../doc/update.html">update(1)</a></li><li><a href="../doc/registry.html">registry(1)</a></li><li><a href="../doc/folders.html">folders(1)</a></li></ul>
24 <p id="footer">outdated — npm@1.1.43</p>
27 var wrapper = document.getElementById("wrapper")
28 var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
29 .filter(function (el) {
30 return el.parentNode === wrapper
31 && el.tagName.match(/H[1-6]/)
35 , toc = document.createElement("ul")
36 toc.innerHTML = els.map(function (el) {
37 var i = el.tagName.charAt(1)
47 out += "<li><a href='#" + el.id + "'>" +
48 ( el.innerText || el.text || el.innerHTML)
53 document.body.appendChild(toc)