npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

lek-dir-object

v4.0.0

Published

'a little pajage for transform a directory to javascript object'

Downloads

9

Readme

Lek-DirObject

Lek-DirObject is a Node.js module for creating a directory tree structure of JavaScript files. It supports two modes: default and specific.

Version 4.0.0 of lek-dir-object uses an improved system that allows webpack compatibility and the creation of multiple directory trees simultaneously.

Installation

To install Lek-DirObject, use the following command:

npm install lek-dir-object

Usage

import the main function with require and then run it to get the createTree function. then with this function you can create trees quite freely.

to the createTree function you pass an object

route, root, onCreate, spesificItems

route is a relative path, and root is an absolute path... i recommend passing __dirname to root and passing the address of the folder you want to scan from the current directory to route. to spesificOptions you can pass an array with the name of the .js files you want to scan. if you don't pass anything, the default mode that scans all .js files will be used.

onCreate is optional, it supports a function that will be executed once the tree has been created.

const lekDirObject = require('lek-dir-object');
const createTree = lekDirObject();

createTree({
    route : './root/of/my/tree/folder',
    root : __dirname,
    spesificItems : [ 'nameFile.js' ]
    onCreate : tree => { console.log(tree) }
});

createTree returns the promise of the tree so you can access the tree through onCreate or using a simple await

const lekDirObject = require('lek-dir-object');
const createTree = lekDirObject();

const my_tree = await createTree({
    route : './root/of/my/tree/folder',
    root : __dirname,
    spesificItems : [ 'nameFile.js' ]
});

console.log(my_tree);

Default Mode

In default mode, your tree creates a tree structure that includes all JavaScript files in the specified directory and its subdirectories.

Example directory structure:

/rootPath/
    /things_1/
        /things_2/
            -file_1.js
            -file_2.js
            -file_3.js
        ...
        -file_4.js
        -file_5.js
    ...
    /file_3/
        -file_6.js
    ...
    file_7.js
...

(async function(){
    const lekDirObject = require('lek-dir-object');
    const createTree = lekDirObject();
    const my_tree = await createTree({ route : './root/of/my/tree/folder', root : __dirname });
    
    console.log(my_tree);
})();


//the tree is an object like:
const tree = {
    things_1 : {
        things_2 : {
            file_1 : 'the_module_was_export_from_file_1',
            file_2 : 'the_module_was_export_from_file_2',
            file_3 : 'the_module_was_export_from_file_3'
        },
        file_4 : 'the_module_was_export_from_file_4',
        file_5 : 'the_module_was_export_from_file_5'
    },
    things_3 : {
        file_6 : 'the_module_was_export_from_file_6'
    }
    file_7 : 'the_module_was_export_from_file_7'
}

Specific Mode

In specific mode, Lek-DirObject only includes files that match specified filenames in the tree structure.

Example directory structure:

/rootPath/
    /things_1/
        /things_2/
            elements.js
            options.js
            other_thing.js
        ...
        elements.js
        options.js
    ...
    /things_3/
        elements.js
    ...
    /things_4/
        other_thing.js
    ...
...

Example usage:


(async function(){
    const lekDirObject = require('lek-dir-object');
    const createTree = lekDirObject();
    const my_tree = await createTree({
        route : './root/of/my/tree/folder',
        root : __dirname,
        spesificItems : ['elements', 'options'] //can end with .js or not
    });
    
    console.log(my_tree);
})();

//the tree is an object like:
const tree = {
    things_1 : {
        things_2 : {
            elements : 'the_module_was_export_from_elements',
            options : 'the_module_was_export_from_options'
        },
        elements : 'the_module_was_export_from_elements',
        options : 'the_module_was_export_from_options'  
    },
    things_3 : {
        elements : 'the_module_was_export_from_elements'
    }
}

Spesifications

Exports

In the tree of nested folders you are going to create. be sure to export what you want to find in the resulting object and export it with module.exports since the package was conceived to receive commonJs.

License

Lek-DirObject is MIT licensed.