dir-structure
v0.0.1
Published
directory structure creation tool
Downloads
1
Readme
#Dir-Structure
NodeJs Package for creating directory structure based upon a JSON structure.
##Installation
npm install dir-structure
##Usage
var dirStructure = require('dir-structure').create();
var structureJSON = {
'aDirectory' : {
'aSubDirectory' : {}
},
'anotherDirectory' : {}
};
dirStructure.create(structureJSON);
//or create at location...
dirStructure.create(structureJSON, '/usr/local/');