sol-digger

0.0.2 • Public • Published

sol-digger

Recursively traverse a directory to extract all Solidity files

Install

npm install sol-digger

API

let digger = require ('sol-digger');

digger is a function that takes 2 arguments: First is directory - the starting point for recursive search of solidity files and second is ignores - an array of names to ignore while treversing. These names could be either file names or sub-directory names.

If you wish to pass only a single file or directory to ignore, you can simply pass in a string instead of array to digger ().

Usage

'use strict';
 
let digger = require ('sol-digger');
 
digger ('/relative/or/absolute/path', ['node_modules', 'contracts'])
    .forEach ( (filename) => {
        console.log (filename);
    });
 
digger ('./foo', 'bar').forEach ( (filename) => {
    console.log (filename);
});

Readme

Keywords

Package Sidebar

Install

npm i sol-digger

Weekly Downloads

2,120

Version

0.0.2

License

MIT

Last publish

Collaborators

  • the-mad-king