0

I write this command NPM i tar now how I can found my tar version?

I want to know my tar version.

2 Answers2

0

You can use npm list for local packages or list -g for globally installed packages. or you can pass the package name as the argument in npm list like this : npm list tar. you can find more detail in this topic.

0

Use the following command:

 npm list tar

or

npm list tar | grep tar@

This will retrieve the tar version, something like this:

tar@4.4.10