Listing all backend packages used for a specific project

161 views Asked by At

I am new to backend. Currently I am using Node js + Restify + Mongo at my backend. How could I get a list of all packages used in backend for a specific project.

1

There are 1 answers

0
Andy On BEST ANSWER

You can try npm-check

Install the package globally

npm install -g npm-check

Then run

npm-check

enter image description here