Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cache.1 « man - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8623eb072878defd556fd5446b40a0d6ce1ce777 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
.\" generated with Ronn/v0.4.1
.\" http://github.com/rtomayko/ronn/
.
.TH "NPM\-CACHE" "1" "May 2010" "" ""
.
.SH "NAME"
\fBnpm\-cache\fR \-\- install a package
.
.SH "SYNOPSIS"
.
.nf
npm cache add <tarball file>
npm cache add <folder>
npm cache add <tarball url>
npm cache add <name> <version>
npm cache ls [<path>]
npm cache clean [<pkg> [<version>]]
.
.fi
.
.SH "DESCRIPTION"
.
.TP
add
Access the local cache of package data.  This command is primarily
intended to be used internally by npm, but it can provide a way to
add data to the local installation cache explicitly.
.
.IP
If two arguments are provided, then npm will fetch the data from the
registry.  This allows npm to use the filesystem as a local proxy to
the registry.
.
.TP
ls
Show the data in the cache.  Additional arguments are joined together
in a path\-like fashion, but something like \fBnpm cache ls npm/0.1.5\fR is
acceptable as well.
.
.TP
clean
Delete data out of the cache for a specific package and version, all
versions of a package, or all data for all packages, depending on the
arguments supplied.
.
.IP
This can be used if invalid data gets into the cache.
.
.SH "DETAILS"
npm stores data for a version of a package in\fB$ROOT/.npm/.cache/<name>/<version>\fR.  Three pieces of data are stored
in this folder:
.
.TP
package/
A folder containing the package contents as they appear in the tarball.
.
.TP
package.json
The package.json file, as npm sees it, with overlays applied and a _id attribute.
.
.TP
package.tgz
The tarball for that version.
.
.SH "HISTORY"
Added in npm version 0.1.6