How to disable the new NPM counter on the command line?

It displays my unit tests, is there an easy way to disable it?

enter image description here

+6
source share
4 answers

And find him! Running npm config set spin=false will disable it

+13
source

I believe that the answer to a personal question about how to do this on the command line (and not when changing the configuration file) is npm --no-spin .

+11
source

You can do it on the fly, for example:

 npm install --no-progress 

Confirmed work in version 3.10.9

0
source

With NPM 3, run this before npm install :

 $ npm config set progress=false 
0
source

Source: https://habr.com/ru/post/972288/


All Articles