Blame view

node_modules/cacache/README.md 19.7 KB
aaac7fed   liuqimichale   add
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
  # cacache [![npm version](https://img.shields.io/npm/v/cacache.svg)](https://npm.im/cacache) [![license](https://img.shields.io/npm/l/cacache.svg)](https://npm.im/cacache) [![Travis](https://img.shields.io/travis/zkat/cacache.svg)](https://travis-ci.org/zkat/cacache) [![AppVeyor](https://ci.appveyor.com/api/projects/status/github/zkat/cacache?svg=true)](https://ci.appveyor.com/project/zkat/cacache) [![Coverage Status](https://coveralls.io/repos/github/zkat/cacache/badge.svg?branch=latest)](https://coveralls.io/github/zkat/cacache?branch=latest)
  
  [`cacache`](https://github.com/zkat/cacache) is a Node.js library for managing
  local key and content address caches. It's really fast, really good at
  concurrency, and it will never give you corrupted data, even if cache files
  get corrupted or manipulated.
  
  It was originally written to be used as [npm](https://npm.im)'s local cache, but
  can just as easily be used on its own.
  
  _Translations: [español](README.es.md)_
  
  ## Install
  
  `$ npm install --save cacache`
  
  ## Table of Contents
  
  * [Example](#example)
  * [Features](#features)
  * [Contributing](#contributing)
  * [API](#api)
    * [Using localized APIs](#localized-api)
    * Reading
      * [`ls`](#ls)
      * [`ls.stream`](#ls-stream)
      * [`get`](#get-data)
      * [`get.stream`](#get-stream)
      * [`get.info`](#get-info)
      * [`get.hasContent`](#get-hasContent)
    * Writing
      * [`put`](#put-data)
      * [`put.stream`](#put-stream)
      * [`put*` opts](#put-options)
      * [`rm.all`](#rm-all)
      * [`rm.entry`](#rm-entry)
      * [`rm.content`](#rm-content)
    * Utilities
      * [`setLocale`](#set-locale)
      * [`clearMemoized`](#clear-memoized)
      * [`tmp.mkdir`](#tmp-mkdir)
      * [`tmp.withTmp`](#with-tmp)
    * Integrity
      * [Subresource Integrity](#integrity)
      * [`verify`](#verify)
      * [`verify.lastRun`](#verify-last-run)
  
  ### Example
  
  ```javascript
  const cacache = require('cacache/en')
  const fs = require('fs')
  
  const tarball = '/path/to/mytar.tgz'
  const cachePath = '/tmp/my-toy-cache'
  const key = 'my-unique-key-1234'
  
  // Cache it! Use `cachePath` as the root of the content cache
  cacache.put(cachePath, key, '10293801983029384').then(integrity => {
    console.log(`Saved content to ${cachePath}.`)
  })
  
  const destination = '/tmp/mytar.tgz'
  
  // Copy the contents out of the cache and into their destination!
  // But this time, use stream instead!
  cacache.get.stream(
    cachePath, key
  ).pipe(
    fs.createWriteStream(destination)
  ).on('finish', () => {
    console.log('done extracting!')
  })
  
  // The same thing, but skip the key index.
  cacache.get.byDigest(cachePath, integrityHash).then(data => {
    fs.writeFile(destination, data, err => {
      console.log('tarball data fetched based on its sha512sum and written out!')
    })
  })
  ```
  
  ### Features
  
  * Extraction by key or by content address (shasum, etc)
  * [Subresource Integrity](#integrity) web standard support
  * Multi-hash support - safely host sha1, sha512, etc, in a single cache
  * Automatic content deduplication
  * Fault tolerance (immune to corruption, partial writes, process races, etc)
  * Consistency guarantees on read and write (full data verification)
  * Lockless, high-concurrency cache access
  * Streaming support
  * Promise support
  * Pretty darn fast -- sub-millisecond reads and writes including verification
  * Arbitrary metadata storage
  * Garbage collection and additional offline verification
  * Thorough test coverage
  * There's probably a bloom filter in there somewhere. Those are cool, right? 🤔
  
  ### Contributing
  
  The cacache team enthusiastically welcomes contributions and project participation! There's a bunch of things you can do if you want to contribute! The [Contributor Guide](CONTRIBUTING.md) has all the information you need for everything from reporting bugs to contributing entire new features. Please don't hesitate to jump in if you'd like to, or even ask us questions if something isn't clear.
  
  All participants and maintainers in this project are expected to follow [Code of Conduct](CODE_OF_CONDUCT.md), and just generally be excellent to each other.
  
  Please refer to the [Changelog](CHANGELOG.md) for project history details, too.
  
  Happy hacking!
  
  ### API
  
  #### <a name="localized-api"></a> Using localized APIs
  
  cacache includes a complete API in English, with the same features as other
  translations. To use the English API as documented in this README, use
  `require('cacache/en')`. This is also currently the default if you do
  `require('cacache')`, but may change in the future.
  
  cacache also supports other languages! You can find the list of currently
  supported ones by looking in `./locales` in the source directory. You can use
  the API in that language with `require('cacache/<lang>')`.
  
  Want to add support for a new language? Please go ahead! You should be able to
  copy `./locales/en.js` and `./locales/en.json` and fill them in. Translating the
  `README.md` is a bit more work, but also appreciated if you get around to it. 👍🏼
  
  #### <a name="ls"></a> `> cacache.ls(cache) -> Promise<Object>`
  
  Lists info for all entries currently in the cache as a single large object. Each
  entry in the object will be keyed by the unique index key, with corresponding
  [`get.info`](#get-info) objects as the values.
  
  ##### Example
  
  ```javascript
  cacache.ls(cachePath).then(console.log)
  // Output
  {
    'my-thing': {
      key: 'my-thing',
      integrity: 'sha512-BaSe64/EnCoDED+HAsh=='
      path: '.testcache/content/deadbeef', // joined with `cachePath`
      time: 12345698490,
      size: 4023948,
      metadata: {
        name: 'blah',
        version: '1.2.3',
        description: 'this was once a package but now it is my-thing'
      }
    },
    'other-thing': {
      key: 'other-thing',
      integrity: 'sha1-ANothER+hasH=',
      path: '.testcache/content/bada55',
      time: 11992309289,
      size: 111112
    }
  }
  ```
  
  #### <a name="ls-stream"></a> `> cacache.ls.stream(cache) -> Readable`
  
  Lists info for all entries currently in the cache as a single large object.
  
  This works just like [`ls`](#ls), except [`get.info`](#get-info) entries are
  returned as `'data'` events on the returned stream.
  
  ##### Example
  
  ```javascript
  cacache.ls.stream(cachePath).on('data', console.log)
  // Output
  {
    key: 'my-thing',
    integrity: 'sha512-BaSe64HaSh',
    path: '.testcache/content/deadbeef', // joined with `cachePath`
    time: 12345698490,
    size: 13423,
    metadata: {
      name: 'blah',
      version: '1.2.3',
      description: 'this was once a package but now it is my-thing'
    }
  }
  
  {
    key: 'other-thing',
    integrity: 'whirlpool-WoWSoMuchSupport',
    path: '.testcache/content/bada55',
    time: 11992309289,
    size: 498023984029
  }
  
  {
    ...
  }
  ```
  
  #### <a name="get-data"></a> `> cacache.get(cache, key, [opts]) -> Promise({data, metadata, integrity})`
  
  Returns an object with the cached data, digest, and metadata identified by
  `key`. The `data` property of this object will be a `Buffer` instance that
  presumably holds some data that means something to you. I'm sure you know what
  to do with it! cacache just won't care.
  
  `integrity` is a [Subresource
  Integrity](#integrity)
  string. That is, a string that can be used to verify `data`, which looks like
  `<hash-algorithm>-<base64-integrity-hash>`.
  
  If there is no content identified by `key`, or if the locally-stored data does
  not pass the validity checksum, the promise will be rejected.
  
  A sub-function, `get.byDigest` may be used for identical behavior, except lookup
  will happen by integrity hash, bypassing the index entirely. This version of the
  function *only* returns `data` itself, without any wrapper.
  
  ##### Note
  
  This function loads the entire cache entry into memory before returning it. If
  you're dealing with Very Large data, consider using [`get.stream`](#get-stream)
  instead.
  
  ##### Example
  
  ```javascript
  // Look up by key
  cache.get(cachePath, 'my-thing').then(console.log)
  // Output:
  {
    metadata: {
      thingName: 'my'
    },
    integrity: 'sha512-BaSe64HaSh',
    data: Buffer#<deadbeef>,
    size: 9320
  }
  
  // Look up by digest
  cache.get.byDigest(cachePath, 'sha512-BaSe64HaSh').then(console.log)
  // Output:
  Buffer#<deadbeef>
  ```
  
  #### <a name="get-stream"></a> `> cacache.get.stream(cache, key, [opts]) -> Readable`
  
  Returns a [Readable Stream](https://nodejs.org/api/stream.html#stream_readable_streams) of the cached data identified by `key`.
  
  If there is no content identified by `key`, or if the locally-stored data does
  not pass the validity checksum, an error will be emitted.
  
  `metadata` and `integrity` events will be emitted before the stream closes, if
  you need to collect that extra data about the cached entry.
  
  A sub-function, `get.stream.byDigest` may be used for identical behavior,
  except lookup will happen by integrity hash, bypassing the index entirely. This
  version does not emit the `metadata` and `integrity` events at all.
  
  ##### Example
  
  ```javascript
  // Look up by key
  cache.get.stream(
    cachePath, 'my-thing'
  ).on('metadata', metadata => {
    console.log('metadata:', metadata)
  }).on('integrity', integrity => {
    console.log('integrity:', integrity)
  }).pipe(
    fs.createWriteStream('./x.tgz')
  )
  // Outputs:
  metadata: { ... }
  integrity: 'sha512-SoMeDIGest+64=='
  
  // Look up by digest
  cache.get.stream.byDigest(
    cachePath, 'sha512-SoMeDIGest+64=='
  ).pipe(
    fs.createWriteStream('./x.tgz')
  )
  ```
  
  #### <a name="get-info"></a> `> cacache.get.info(cache, key) -> Promise`
  
  Looks up `key` in the cache index, returning information about the entry if
  one exists.
  
  ##### Fields
  
  * `key` - Key the entry was looked up under. Matches the `key` argument.
  * `integrity` - [Subresource Integrity hash](#integrity) for the content this entry refers to.
  * `path` - Filesystem path relative to `cache` argument where content is stored.
  * `time` - Timestamp the entry was first added on.
  * `metadata` - User-assigned metadata associated with the entry/content.
  
  ##### Example
  
  ```javascript
  cacache.get.info(cachePath, 'my-thing').then(console.log)
  
  // Output
  {
    key: 'my-thing',
    integrity: 'sha256-MUSTVERIFY+ALL/THINGS=='
    path: '.testcache/content/deadbeef',
    time: 12345698490,
    size: 849234,
    metadata: {
      name: 'blah',
      version: '1.2.3',
      description: 'this was once a package but now it is my-thing'
    }
  }
  ```
  
  #### <a name="get-hasContent"></a> `> cacache.get.hasContent(cache, integrity) -> Promise`
  
  Looks up a [Subresource Integrity hash](#integrity) in the cache. If content
  exists for this `integrity`, it will return an object, with the specific single integrity hash
  that was found in `sri` key, and the size of the found content as `size`. If no content exists for this integrity, it will return `false`.
  
  ##### Example
  
  ```javascript
  cacache.get.hasContent(cachePath, 'sha256-MUSTVERIFY+ALL/THINGS==').then(console.log)
  
  // Output
  {
    sri: {
      source: 'sha256-MUSTVERIFY+ALL/THINGS==',
      algorithm: 'sha256',
      digest: 'MUSTVERIFY+ALL/THINGS==',
      options: []
    },
    size: 9001
  }
  
  cacache.get.hasContent(cachePath, 'sha521-NOT+IN/CACHE==').then(console.log)
  
  // Output
  false
  ```
  
  #### <a name="put-data"></a> `> cacache.put(cache, key, data, [opts]) -> Promise`
  
  Inserts data passed to it into the cache. The returned Promise resolves with a
  digest (generated according to [`opts.algorithms`](#optsalgorithms)) after the
  cache entry has been successfully written.
  
  ##### Example
  
  ```javascript
  fetch(
    'https://registry.npmjs.org/cacache/-/cacache-1.0.0.tgz'
  ).then(data => {
    return cacache.put(cachePath, 'registry.npmjs.org|cacache@1.0.0', data)
  }).then(integrity => {
    console.log('integrity hash is', integrity)
  })
  ```
  
  #### <a name="put-stream"></a> `> cacache.put.stream(cache, key, [opts]) -> Writable`
  
  Returns a [Writable
  Stream](https://nodejs.org/api/stream.html#stream_writable_streams) that inserts
  data written to it into the cache. Emits an `integrity` event with the digest of
  written contents when it succeeds.
  
  ##### Example
  
  ```javascript
  request.get(
    'https://registry.npmjs.org/cacache/-/cacache-1.0.0.tgz'
  ).pipe(
    cacache.put.stream(
      cachePath, 'registry.npmjs.org|cacache@1.0.0'
    ).on('integrity', d => console.log(`integrity digest is ${d}`))
  )
  ```
  
  #### <a name="put-options"></a> `> cacache.put options`
  
  `cacache.put` functions have a number of options in common.
  
  ##### `opts.metadata`
  
  Arbitrary metadata to be attached to the inserted key.
  
  ##### `opts.size`
  
  If provided, the data stream will be verified to check that enough data was
  passed through. If there's more or less data than expected, insertion will fail
  with an `EBADSIZE` error.
  
  ##### `opts.integrity`
  
  If present, the pre-calculated digest for the inserted content. If this option
  if provided and does not match the post-insertion digest, insertion will fail
  with an `EINTEGRITY` error.
  
  `algorithms` has no effect if this option is present.
  
  ##### `opts.algorithms`
  
  Default: ['sha512']
  
  Hashing algorithms to use when calculating the [subresource integrity
  digest](#integrity)
  for inserted data. Can use any algorithm listed in `crypto.getHashes()` or
  `'omakase'`/`'お任せします'` to pick a random hash algorithm on each insertion. You
  may also use any anagram of `'modnar'` to use this feature.
  
  Currently only supports one algorithm at a time (i.e., an array length of
  exactly `1`). Has no effect if `opts.integrity` is present.
  
  ##### `opts.uid`/`opts.gid`
  
  If provided, cacache will do its best to make sure any new files added to the
  cache use this particular `uid`/`gid` combination. This can be used,
  for example, to drop permissions when someone uses `sudo`, but cacache makes
  no assumptions about your needs here.
  
  ##### `opts.memoize`
  
  Default: null
  
  If provided, cacache will memoize the given cache insertion in memory, bypassing
  any filesystem checks for that key or digest in future cache fetches. Nothing
  will be written to the in-memory cache unless this option is explicitly truthy.
  
  If `opts.memoize` is an object or a `Map`-like (that is, an object with `get`
  and `set` methods), it will be written to instead of the global memoization
  cache.
  
  Reading from disk data can be forced by explicitly passing `memoize: false` to
  the reader functions, but their default will be to read from memory.
  
  #### <a name="rm-all"></a> `> cacache.rm.all(cache) -> Promise`
  
  Clears the entire cache. Mainly by blowing away the cache directory itself.
  
  ##### Example
  
  ```javascript
  cacache.rm.all(cachePath).then(() => {
    console.log('THE APOCALYPSE IS UPON US 😱')
  })
  ```
  
  #### <a name="rm-entry"></a> `> cacache.rm.entry(cache, key) -> Promise`
  
  Alias: `cacache.rm`
  
  Removes the index entry for `key`. Content will still be accessible if
  requested directly by content address ([`get.stream.byDigest`](#get-stream)).
  
  To remove the content itself (which might still be used by other entries), use
  [`rm.content`](#rm-content). Or, to safely vacuum any unused content, use
  [`verify`](#verify).
  
  ##### Example
  
  ```javascript
  cacache.rm.entry(cachePath, 'my-thing').then(() => {
    console.log('I did not like it anyway')
  })
  ```
  
  #### <a name="rm-content"></a> `> cacache.rm.content(cache, integrity) -> Promise`
  
  Removes the content identified by `integrity`. Any index entries referring to it
  will not be usable again until the content is re-added to the cache with an
  identical digest.
  
  ##### Example
  
  ```javascript
  cacache.rm.content(cachePath, 'sha512-SoMeDIGest/IN+BaSE64==').then(() => {
    console.log('data for my-thing is gone!')
  })
  ```
  
  #### <a name="set-locale"></a> `> cacache.setLocale(locale)`
  
  Configure the language/locale used for messages and errors coming from cacache.
  The list of available locales is in the `./locales` directory in the project
  root.
  
  _Interested in contributing more languages! [Submit a PR](CONTRIBUTING.md)!_
  
  #### <a name="clear-memoized"></a> `> cacache.clearMemoized()`
  
  Completely resets the in-memory entry cache.
  
  #### <a name="tmp-mkdir"></a> `> tmp.mkdir(cache, opts) -> Promise<Path>`
  
  Returns a unique temporary directory inside the cache's `tmp` dir. This
  directory will use the same safe user assignment that all the other stuff use.
  
  Once the directory is made, it's the user's responsibility that all files within
  are made according to the same `opts.gid`/`opts.uid` settings that would be
  passed in. If not, you can ask cacache to do it for you by calling
  [`tmp.fix()`](#tmp-fix), which will fix all tmp directory permissions.
  
  If you want automatic cleanup of this directory, use
  [`tmp.withTmp()`](#with-tpm)
  
  ##### Example
  
  ```javascript
  cacache.tmp.mkdir(cache).then(dir => {
    fs.writeFile(path.join(dir, 'blablabla'), Buffer#<1234>, ...)
  })
  ```
  
  #### <a name="with-tmp"></a> `> tmp.withTmp(cache, opts, cb) -> Promise`
  
  Creates a temporary directory with [`tmp.mkdir()`](#tmp-mkdir) and calls `cb`
  with it. The created temporary directory will be removed when the return value
  of `cb()` resolves -- that is, if you return a Promise from `cb()`, the tmp
  directory will be automatically deleted once that promise completes.
  
  The same caveats apply when it comes to managing permissions for the tmp dir's
  contents.
  
  ##### Example
  
  ```javascript
  cacache.tmp.withTmp(cache, dir => {
    return fs.writeFileAsync(path.join(dir, 'blablabla'), Buffer#<1234>, ...)
  }).then(() => {
    // `dir` no longer exists
  })
  ```
  
  #### <a name="integrity"></a> Subresource Integrity Digests
  
  For content verification and addressing, cacache uses strings following the
  [Subresource
  Integrity spec](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity).
  That is, any time cacache expects an `integrity` argument or option, it
  should be in the format `<hashAlgorithm>-<base64-hash>`.
  
  One deviation from the current spec is that cacache will support any hash
  algorithms supported by the underlying Node.js process. You can use
  `crypto.getHashes()` to see which ones you can use.
  
  ##### Generating Digests Yourself
  
  If you have an existing content shasum, they are generally formatted as a
  hexadecimal string (that is, a sha1 would look like:
  `5f5513f8822fdbe5145af33b64d8d970dcf95c6e`). In order to be compatible with
  cacache, you'll need to convert this to an equivalent subresource integrity
  string. For this example, the corresponding hash would be:
  `sha1-X1UT+IIv2+UUWvM7ZNjZcNz5XG4=`.
  
  If you want to generate an integrity string yourself for existing data, you can
  use something like this:
  
  ```javascript
  const crypto = require('crypto')
  const hashAlgorithm = 'sha512'
  const data = 'foobarbaz'
  
  const integrity = (
    hashAlgorithm +
    '-' +
    crypto.createHash(hashAlgorithm).update(data).digest('base64')
  )
  ```
  
  You can also use [`ssri`](https://npm.im/ssri) to have a richer set of functionality
  around SRI strings, including generation, parsing, and translating from existing
  hex-formatted strings.
  
  #### <a name="verify"></a> `> cacache.verify(cache, opts) -> Promise`
  
  Checks out and fixes up your cache:
  
  * Cleans up corrupted or invalid index entries.
  * Custom entry filtering options.
  * Garbage collects any content entries not referenced by the index.
  * Checks integrity for all content entries and removes invalid content.
  * Fixes cache ownership.
  * Removes the `tmp` directory in the cache and all its contents.
  
  When it's done, it'll return an object with various stats about the verification
  process, including amount of storage reclaimed, number of valid entries, number
  of entries removed, etc.
  
  ##### Options
  
  * `opts.uid` - uid to assign to cache and its contents
  * `opts.gid` - gid to assign to cache and its contents
  * `opts.filter` - receives a formatted entry. Return false to remove it.
                    Note: might be called more than once on the same entry.
  
  ##### Example
  
  ```sh
  echo somegarbage >> $CACHEPATH/content/deadbeef
  ```
  
  ```javascript
  cacache.verify(cachePath).then(stats => {
    // deadbeef collected, because of invalid checksum.
    console.log('cache is much nicer now! stats:', stats)
  })
  ```
  
  #### <a name="verify-last-run"></a> `> cacache.verify.lastRun(cache) -> Promise`
  
  Returns a `Date` representing the last time `cacache.verify` was run on `cache`.
  
  ##### Example
  
  ```javascript
  cacache.verify(cachePath).then(() => {
    cacache.verify.lastRun(cachePath).then(lastTime => {
      console.log('cacache.verify was last called on' + lastTime)
    })
  })
  ```