1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 09:19:47 +01:00

npm-cache: add page (#14391)

* Create npm-cache.md

* Update pages/common/npm-cache.md

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>

* Update pages/common/npm-cache.md

Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
This commit is contained in:
SaiTeja-002 2024-10-27 08:40:49 +05:30 committed by GitHub
parent 0a2655bc53
commit a8480a2633
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

36
pages/common/npm-cache.md Normal file
View file

@ -0,0 +1,36 @@
# npm cache
> Manage the npm package cache.
> More information: <https://docs.npmjs.com/cli/commands/npm-cache>.
- Add a specific package to the cache:
`npm cache add {{package_name}}`
- Remove a specific package from the cache:
`npm cache remove {{package_name}}`
- Clear a specific cached item by key:
`npm cache clean {{key}}`
- Clear the entire npm cache:
`npm cache clean --force`
- List the contents of the npm cache:
`npm cache ls`
- Verify the integrity of the npm cache:
`npm cache verify`
- Show information about the npm cache location and configuration:
`npm cache dir`
- Change the cache path:
`npm config set cache {{path/to/directory}}`