npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

require-traverser

v0.1.9

Published

A library for finding all the nested dependencies of a commonJS/node.js module. Uses 'detective' to traverse files.

Downloads

22

Readme

Status: API finalized, needs testing

requireTraverser

A library for finding all the nested dependencies of a commonJS/node.js module. Uses 'detective' to traverse files.

Install

npm install require-traverser

Usage

var rt = require('require-traverser')

Two ways to call rt:

  • one module: <directory>, <module>, [<opts>,] <errback>
  • multiple modules: <moduleList>, [<opts>,] <errback>

where

  • <directory> is the directory path from which to search for the module
  • <module> is the module to get dependencies from
  • <moduleList> is an array of objects like: {dir: , module: }
  • <errback> is a standard node.js errback (where the first parameter is the error, undefined if there was none, and the second parameter is the return value)
  • <opts> is optional, and can have any of the parameters:
    • isFile - function to asynchronously test whether a file exists. Takes the same parameters as fs.isFile.
    • readFile - function to read files asynchronously. Takes the same parameters as fs.readFile.

rt returns (to the errback) an object like:

{<filename>:
  {resolved: [
     {relative: <modulePath>, absolute: <absolute filesystem path>},
     ...
   ],
   unresolved: <require expressions that couldn't be resolved>,
   unfound: <require dependencies that couldn't be found>
  }
}

Example traversed module:

require("./testModule/")
var x = "whatever"
require(x)
require('dep'+'endency')
require("http")
require("url")

Example result:

{"/home/vagrant/temporaryPackageFolder/node_modules/http-proxy/lib/http-proxy.js":
    {"resolved":[
        {"relative":"./testModule/","absolute":"/home/vagrant/temporaryPackageFolder/node_modules/testModule/lib/testModule.js"}
     ],
     "unresolved":["'dep'+'endency'", "x"],
     "unfound":["http","url"]
    }
}

rt doesn't resolve node.js native libraries (returns them as 'unfound').

Todo

  • When node-resolve accepts my pull request, switch back to the main repo

How to Contribute!

Anything helps:

  • Creating issues (aka tickets/bugs/etc). Please feel free to use issues to report bugs, request features, and discuss changes
  • Updating the documentation: ie this readme file. Be bold! Help create amazing documentation!
  • Submitting pull requests.

How to submit pull requests:

  1. Please create an issue and get my input before spending too much time creating a feature. Work with me to ensure your feature or addition is optimal and fits with the purpose of the project.
  2. Fork the repository
  3. clone your forked repo onto your machine and run npm install at its root
  4. If you're gonna work on multiple separate things, its best to create a separate branch for each of them
  5. edit!
  6. If it's a code change, please add to the unit tests (at test/requireTraverserTest.js) to verify that your change
  7. When you're done, run the unit tests and ensure they all pass
  8. Commit and push your changes
  9. Submit a pull request: https://help.github.com/articles/creating-a-pull-request

Change Log

  • 0.1.8 - fixed a bug resolving modules where there is a folder and javascript file with the same name in the same location
  • 0.1.6 - fixed a bug in error handling when initial modules can't be found

License

Released under the MIT license: http://opensource.org/licenses/MIT