Skip to content

Instantly share code, notes, and snippets.

@pauloantonelli
Last active October 22, 2018 21:02
Show Gist options
  • Save pauloantonelli/f3288ca026d382ea825cffac14d7406b to your computer and use it in GitHub Desktop.
Save pauloantonelli/f3288ca026d382ea825cffac14d7406b to your computer and use it in GitHub Desktop.
Comandos NPM basicos do dia a dia
Como ver quais pacotes estão instalados globalmente na sua máquina e quais suas versões.
npm list -g --depth=0
Como deletar o pacote desejado globalmente da maquina
npm uninstall -g nomeDoPacote
Como ver se tem algum pacote ou arquivo especifico npm com problema
npm audit
Concertar automaticamente os pacotes ou arquivos do npm com problema
npm audit fix
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment