0.0.2 • Published 8 years ago

sol-digger v0.0.2

Weekly downloads
3,740
License
MIT
Repository
github
Last release
8 years ago

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);
});
0.0.2

8 years ago

0.0.1

8 years ago

0.0.0

8 years ago