Skip to content

Instantly share code, notes, and snippets.

@lbfalvy
Last active May 19, 2023 17:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lbfalvy/8e1c6f81626a110f8a6e8df1285ae0e1 to your computer and use it in GitHub Desktop.
Save lbfalvy/8e1c6f81626a110f8a6e8df1285ae0e1 to your computer and use it in GitHub Desktop.
Update all NPM packages to the latest version
#!/bin/bash
npm install `npm outdated | tail -n +2 | awk '{ print $1 "@latest" }' | tr '\n' ' '`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment