]> 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-edit.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-edit.md
1 npm-edit(1) -- Edit an installed package
2 ========================================
3
4 ## SYNOPSIS
5
6     npm edit <name>[@<version>]
7
8 ## DESCRIPTION
9
10 Opens the package folder in the default editor (or whatever you've
11 configured as the npm `editor` config -- see `npm-config(7)`.)
12
13 After it has been edited, the package is rebuilt so as to pick up any
14 changes in compiled packages.
15
16 For instance, you can do `npm install connect` to install connect
17 into your package, and then `npm edit connect` to make a few
18 changes to your locally installed copy.
19
20 ## CONFIGURATION
21
22 ### editor
23
24 * Default: `EDITOR` environment variable if set, or `"vi"` on Posix,
25   or `"notepad"` on Windows.
26 * Type: path
27
28 The command to run for `npm edit` or `npm config edit`.
29
30 ## SEE ALSO
31
32 * npm-folders(5)
33 * npm-explore(1)
34 * npm-install(1)
35 * npm-config(1)
36 * npm-config(7)
37 * npmrc(5)