mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
38 lines
667 B
Plaintext
38 lines
667 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# npm cache
|
|
|
|
> Manage the npm package cache.
|
|
> More information: <https://docs.npmjs.com/cli/npm-cache/>.
|
|
|
|
- Add a specific package to the cache:
|
|
|
|
`npm cache add {{package_name}}`
|
|
|
|
- Clear a specific cached item by key:
|
|
|
|
`npm cache clean {{key}}`
|
|
|
|
- Clear the entire npm cache:
|
|
|
|
`npm cache clean {{[-f|--force]}}`
|
|
|
|
- List cached packages:
|
|
|
|
`npm cache ls`
|
|
|
|
- List cached packages matching a specific name and version:
|
|
|
|
`npm cache ls {{name}}@{{version}}`
|
|
|
|
- Verify the integrity of the npm cache:
|
|
|
|
`npm cache verify`
|
|
|
|
- List all entries in the npx cache:
|
|
|
|
`npm cache npx ls`
|