required
Version:
traverse your script and identify dependencies from requires
60 lines (39 loc) • 1.42 kB
Markdown
Identifies which modules and files your script is using.
```javascript
var required = require('required');
required('/path/to/entry/source/file/js', function(err, deps) {
// deps is an array of dependency objects
// see the api section below for a description of the object
});
```
Reads the filename and traverses all the dependencies.
The return result to callback is (err, details) where details is and array of dependencies for the file.
Each object in the array takes the following form:
```javascript
{
// the local name of the require
// i.e. the string in your "require" statement
id: 'local-require-name',
native: // true if a native module (i.e. events, cryto, etc)
// full path to the entry file for the module
// this does not exist for native modules
filename: '/path/to/require/from/project/file.js',
// an array of the dependencies for the file
// each object is of the same form as described above
deps: [
...
]
},
```
```shell
npm install required
```
Run tests with ```npm test```
Rebuild the golden files with ```npm run-script test-generate```
Generate a coverage report (requires cover module) ```npm run-script coverage```