1.4.6 • Published 12 months ago

pathdoras-box v1.4.6

Weekly downloads
-
License
ISC
Repository
github
Last release
12 months ago

pathdoras-box

Description

Pathtool is a powerful tool designed to extract all file paths that end with .js within a specified root directory. It serves as a valuable asset for both coding purposes and storing data in an external text file.

The tool meticulously traverses every branch of the folder tree originating from the specified root directory. During this process, it resolves and captures the file paths of all JavaScript files (.js). This comprehensive search ensures that no relevant files are overlooked.

Furthermore, Pathtool provides an option to write the extracted file paths to an external text file named paths.txt. This text file is placed in the parent folder if the third parameter is set to true. This feature offers a convenient way to save and reference the extracted paths for future use.

Note that pathtool skips node_modules content

Install

npm i pathdoras-box

Usage

const {pathtool} = require('pathdoras-box');

function get_paths(){
    pathtool('<your_root directory>', [], Boolean)
    .then(res => console.log('res',res))
    .catch(err => console.log('err',err));
}

get_paths()

Arguments

ArgumentRequiredTypeDescription
root directoryrequiredstringSpecified root directory
Empty arrayrequiredarrayRequired for the algorithm to operate
Store dataoptionalbooleanOption to store data to file (default: false).
1.4.6

12 months ago

1.4.5

12 months ago

1.4.4

12 months ago

1.4.3

12 months ago

1.4.2

1 year ago

1.4.1

1 year ago

1.4.0

1 year ago

1.3.0

1 year ago

1.2.9

1 year ago

1.2.8

1 year ago

1.2.7

1 year ago

1.2.6

1 year ago