]> gerrit.simantics Code Review - simantics/district.git/blob - org.simantics.maps.server/node/node-v4.8.0-win-x64/node_modules/npm/doc/cli/npm-explore.md
Adding integrated tile server
[simantics/district.git] / org.simantics.maps.server / node / node-v4.8.0-win-x64 / node_modules / npm / doc / cli / npm-explore.md
1 npm-explore(1) -- Browse an installed package
2 =============================================
3
4 ## SYNOPSIS
5
6     npm explore <name> [ -- <cmd>]
7
8 ## DESCRIPTION
9
10 Spawn a subshell in the directory of the installed package specified.
11
12 If a command is specified, then it is run in the subshell, which then
13 immediately terminates.
14
15 This is particularly handy in the case of git submodules in the
16 `node_modules` folder:
17
18     npm explore some-dependency -- git pull origin master
19
20 Note that the package is *not* automatically rebuilt afterwards, so be
21 sure to use `npm rebuild <pkg>` if you make any changes.
22
23 ## CONFIGURATION
24
25 ### shell
26
27 * Default: SHELL environment variable, or "bash" on Posix, or "cmd" on
28   Windows
29 * Type: path
30
31 The shell to run for the `npm explore` command.
32
33 ## SEE ALSO
34
35 * npm-folders(5)
36 * npm-edit(1)
37 * npm-rebuild(1)
38 * npm-build(1)
39 * npm-install(1)