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 best solutions below

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