Skip to content

Commit

Permalink
Add note
Browse files Browse the repository at this point in the history
  • Loading branch information
derekmbrown committed Jan 27, 2025
1 parent 7bd2992 commit 17157a4
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/content/notes/package-to-manage-npm-packages.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: 'Package To Manage NPM Packages'
pubDate: 01-27-2025
tags: ['note', 'npm']
---

I use [this](https://www.npmjs.com/package/npm-check) package to manage npm packages: `npm-check`.

```bash
# Shows outdated packages
npx npm-check

# Interactive mode
npx npm-check -u

# Updates without prompt
npx npm-check -y
```

0 comments on commit 17157a4

Please sign in to comment.