Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7824231
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T08:31:47+00:00 2026-06-02T08:31:47+00:00

Other than grabbing the package.json file at the project root is there a way

  • 0

Other than grabbing the package.json file at the project root is there a way to determine the list of dependencies of a running node.js application? Does node keep this meta information available as some var in the global namespace?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-02T08:31:49+00:00Added an answer on June 2, 2026 at 8:31 am

    If you are just looking for the currently installed npm packages in the application directory, then you can install the npm package (npm install -g npm) and programatically invoke ls to list the installed packages and the dependency trees.

    Obviously, this has no bearing on whether the installed packages are actually require‘d in the application or not.

    Usage is not that well documented but this should get you started.

    var npm = require('npm');
    
    npm.load(function(err, npm) {
        npm.commands.ls([], true, function(err, data, lite) {
            console.log(data); //or lite for simplified output
        });
    });
    

    e.g.:

    { dependencies:
       { npm: { version: '1.1.18', dependencies: [Object] },
         request: { version: '2.9.202' } } }
    

    Otherwise, I believe the only other option is to introspect the module module to get information pertaining to the currently loaded/cached module paths. However this definitely does not look to have been developed as a public API. I’m not sure if there are any alternatives so would be keen to hear if there are e.g.

    var req = require('request'); // require some module for demo purposes
    var m = require('module');
    
    // properties of m contain current loaded module info, e.g. m._cache
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Other than using raw XML, is there an easy way in .NET to open
Other than timer:send_after/2, is there a way to send a gen_server a handle_info message?
Other than the if(false) hack, is there any way to get Intellisense working in
Other than a graphic, is there any way to display a special character? (like
Other than creating a function, is there a shorter way to check if a
is there any way other than ftp ,HTTP to download/upload files using obj c
Is there something other than distributing the rewritten assembly xml doc file that needs
Other than using listeners, is there any way by which i can get index
Other than AWT, Swing, SWT (Java) - are there any good open source Java
Other than reading the GetFileName() file and reading to line GetFileLineNumber() of a stackframe

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.