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: 9446dd6317d53476da348e94a29131e6b4077948 (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
67
68
69
70
.\" Generated with Ronnjs/v0.1
.\" http://github.com/kapouer/ronnjs/
.
.TH "NPM\-CACHE" "1" "August 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"
.
.IP "\(bu" 4
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\.
.
.IP "\(bu" 4
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\.
.
.IP "\(bu" 4
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\.
.
.IP "" 0
.
.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:
.
.IP "\(bu" 4
package/:
A folder containing the package contents as they appear in the tarball\.
.
.IP "\(bu" 4
package\.json:
The package\.json file, as npm sees it, with overlays applied and a _id attribute\.
.
.IP "\(bu" 4
package\.tgz:
The tarball for that version\.
.
.IP "" 0
.
.SH "HISTORY"
Added in npm version 0\.1\.6