cbdeveloper
cbdeveloper

Reputation: 31395

How to write a txt file with the log from the `npm list` command?

npm list logs this:

enter image description here

How can I save that as a txt file?

Upvotes: 0

Views: 1107

Answers (1)

Horatiu Jeflea
Horatiu Jeflea

Reputation: 7404

Works on newer Windows OS and Linux/Mac:

npm list > logs.txt

Upvotes: 6

Related Questions