node.jsexpressbackendrestify

Listing all backend packages used for a specific project


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.


Solution

  • You can try npm-check

    Install the package globally

    npm install -g npm-check
    

    Then run

    npm-check
    

    enter image description here