Socket
Book a DemoInstallSign in
Socket

amdetective

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

amdetective

Like node-detective, but for AMD/r.js files. Finds all calls to `require()` in AMD modules by walking the AST.

latest
Source
npmnpm
Version
0.3.0
Version published
Weekly downloads
740
-29.46%
Maintainers
1
Weekly downloads
 
Created
Source

amdetective

Find all calls to require() in AMD modules by walking the AST.

This module uses code extracted from r.js rather than trying to write it's own version of r.js parsing. It depends on esprima (but not r.js).

Install

npm install amdetective

example

First, create detect.js which is just a four line CLI wrapper around amdetective:

var fs = require('fs'),
    amdetective = require('amdetective');

console.log('Reading file from first argument: ' + process.argv[2]);
console.log(amdetective(fs.readFileSync(process.argv[2]).toString()));

Now, let's run it on a bunch of examples to see some output. You can also run this command on your own files to get more realistic examples.

Definition Functions with Dependencies (simple.js)

require(['module1', 'path/to/module2'], function(a, b){
  // ...
});

Running node detect.js simple.js produces:

Reading file from first argument: simple.js
[ 'module1', 'path/to/module2' ]

Simplified CommonJS Wrapper (simple2.js)

define(function(require) {
  var a = require('some/file'),
      b = require('json!foo/bar');
  // ...
});

Running node detect.js simple2.js produces:

Reading file from first argument: simple2.js
[ 'require', 'some/file', 'json!foo/bar' ]

Named module (named.js)

define("foo/title",
    ["my/cart", "my/inventory"],
    function(cart, inventory) {
   }
);

Running node detect.js simple2.js produces:

Reading file from first argument: named.js
[ { name: 'foo/title', deps: [ 'my/cart', 'my/inventory' ] } ]

Note how named modules are treated differently - this is just something that the underlying resolution code does so be prepared to deal with it.

Methods

amdetective(src, opts)

Given some source body src, return an array of all the require() call arguments detected by AMD/r.js.

The options parameter opts is passed along to parse.recurse() in lib/parse.js. This is normally the build config options if it is passed.

License

BSD

Keywords

require

FAQs

Package last updated on 05 Jan 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts