Sha256: b6c9333214d0c0d6375ce2097c5babe7cb8159bb1028bfe92973d6cf9809ce90

Contents?: true

Size: 1.26 KB

Versions: 3

Compression:

Stored size: 1.26 KB

Contents

detective
=========

Find all calls to require() no matter how crazily nested using a proper walk of
the AST.

[![build status](https://secure.travis-ci.org/substack/node-detective.png)](http://travis-ci.org/substack/node-detective)

example
=======

strings
-------

strings_src.js:

````javascript
var a = require('a');
var b = require('b');
var c = require('c');
````

strings.js:

````javascript
var detective = require('detective');
var fs = require('fs');

var src = fs.readFileSync(__dirname + '/strings_src.js');
var requires = detective(src);
console.dir(requires);
````

output:

    $ node examples/strings.js
    [ 'a', 'b', 'c' ]

methods
=======

var detective = require('detective');

detective(src, opts)
--------------------

Give some source body `src`, return an array of all the require()s with string
arguments.

The options parameter `opts` is passed along to `detective.find()`.

detective.find(src, opts)
-------------------------

Give some source body `src`, return an object with "strings" and "expressions"
arrays for each of the require() calls.

The "expressions" array will contain the stringified expressions.

Optionally you can specify a different function besides `"require"` to analyze
with `opts.word`.

installation
============

    npm install detective

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
snowball-0.1.22 node_modules/browserify/node_modules/detective/README.markdown
sprockets-browserify-0.1.2 node_modules/browserify/node_modules/detective/README.markdown
sprockets-browserify-0.1.0 node_modules/browserify/node_modules/detective/README.markdown