Lines Matching full:package
3 \fBnpm-link\fR \- Symlink a package folder
8 npm link (in package dir)
16 Package linking is a two\-step process\.
18 First, \fBnpm link\fP in a package folder will create a symlink in the global folder
19 \fB{prefix}/lib/node_modules/<package>\fP that links to the package where the \fBnpm
20 link\fP command was executed\. It will also link any bins in the package to \fB{prefix}/bin/{name}\…
23 Next, in some other location, \fBnpm link package\-name\fP will create a
24 symbolic link from globally\-installed \fBpackage\-name\fP to \fBnode_modules/\fP
27 Note that \fBpackage\-name\fP is taken from \fBpackage\.json\fP,
30 The package name can be optionally prefixed with a scope\. See npm help \fBscope\fP\|\.
43 cd ~/projects/node\-redis # go into the package directory
45 cd ~/projects/node\-bloggy # go into some other package directory\.
46 npm link redis # link\-install the package
52 be to the package name, not the directory name for that package\.
77 rather than the package name \fBredis\fP\|\.
79 If your linked package is scoped (see npm help \fBscope\fP) your link command must include that sco…
91 npm help package\.json