The data contained in this repository can be downloaded to your computer using one of several clients.
Please see the documentation of your version control software client for more information.

Please select the desired protocol below to get the URL.

This URL has Read-Only access.

Statistics
| Branch: | Revision:

main_repo / deps / npm / html / doc / explore.html @ d46ebffb

History | View | Annotate | Download (2.32 KB)

1
<!doctype html>
2
<html>
3
  <title>explore</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="../doc/explore.html">explore</a></h1> <p>Browse an installed package</p>
10

    
11
<h2 id="SYNOPSIS">SYNOPSIS</h2>
12

    
13
<pre><code>npm explore &lt;name&gt;[@&lt;version&gt;] [ -- &lt;cmd&gt;]</code></pre>
14

    
15
<h2 id="DESCRIPTION">DESCRIPTION</h2>
16

    
17
<p>Spawn a subshell in the directory of the installed package specified.</p>
18

    
19
<p>If a command is specified, then it is run in the subshell, which then
20
immediately terminates.</p>
21

    
22
<p>This is particularly handy in the case of git submodules in the
23
<code>node_modules</code> folder:</p>
24

    
25
<pre><code>npm explore some-dependency -- git pull origin master</code></pre>
26

    
27
<p>Note that the package is <em>not</em> automatically rebuilt afterwards, so be
28
sure to use <code>npm rebuild &lt;pkg&gt;</code> if you make any changes.</p>
29

    
30
<h2 id="CONFIGURATION">CONFIGURATION</h2>
31

    
32
<h3 id="shell">shell</h3>
33

    
34
<ul><li>Default: SHELL environment variable, or &quot;bash&quot; on Posix, or &quot;cmd&quot; on
35
Windows</li><li>Type: path</li></ul>
36

    
37
<p>The shell to run for the <code>npm explore</code> command.</p>
38

    
39
<h2 id="SEE-ALSO">SEE ALSO</h2>
40

    
41
<ul><li><a href="../doc/submodule.html">submodule(1)</a></li><li><a href="../doc/folders.html">folders(1)</a></li><li><a href="../doc/edit.html">edit(1)</a></li><li><a href="../doc/rebuild.html">rebuild(1)</a></li><li><a href="../doc/build.html">build(1)</a></li><li><a href="../doc/install.html">install(1)</a></li></ul>
42
</div>
43
<p id="footer">explore &mdash; npm@1.2.17</p>
44
<script>
45
;(function () {
46
var wrapper = document.getElementById("wrapper")
47
var els = Array.prototype.slice.call(wrapper.getElementsByTagName("*"), 0)
48
  .filter(function (el) {
49
    return el.parentNode === wrapper
50
        && el.tagName.match(/H[1-6]/)
51
        && el.id
52
  })
53
var l = 2
54
  , toc = document.createElement("ul")
55
toc.innerHTML = els.map(function (el) {
56
  var i = el.tagName.charAt(1)
57
    , out = ""
58
  while (i > l) {
59
    out += "<ul>"
60
    l ++
61
  }
62
  while (i < l) {
63
    out += "</ul>"
64
    l --
65
  }
66
  out += "<li><a href='#" + el.id + "'>" +
67
    ( el.innerText || el.text || el.innerHTML)
68
    + "</a>"
69
  return out
70
}).join("\n")
71
toc.id = "toc"
72
document.body.appendChild(toc)
73
})()
74
</script>
75
</body></html>