creationix / mine

Miner digs into a javascript file looking for require calls. Used to statically extract common js dependencies.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mine.js

The mine script accepts js source and returns all the require call locations as well as the target string. This is a submodule of js-linker and my-filters.

var mine = require('js-linker/mine.js');
var fs = require('fs');
var code = fs.readFileSync("test.js");
var deps = mine(code);

About

Miner digs into a javascript file looking for require calls. Used to statically extract common js dependencies.


Languages

Language:JavaScript 100.0%