Giter Club home page Giter Club logo

node-modular's Introduction

Modular

Modular allows simple exportation of a module directory to a node module structure. Individual files are only required when the exported object's property is accessed.

Installation

% npm install -g auto-module

Usage

A require("modular") returns a function that takes two optional arguments.

module.exports = require("modular")([src], [options]);

src, if given, should be a string that is a path to a directory to turn into an Modular. If not given, the directory of the file that required Modular will be used.

options, if given, should be an object with one, or more, of the following properties:

  • recursive: Whether or not to recursively turn sub-directories into Modulars also. Default is true.

  • keyFormatter: A function to use to transform a filename into a property key. The default is to camel-case the file name by splitting the base filename (minus any extension) on whitespace or a hyphen, and then title case all words after first. i.e:

    "my-foo-function" => "myFooFunction"
    "My-Base-Class" => "MyBaseClass"
    "-my-other-class" => "MyOtherClass"
    
  • excludes: An array of strings, or Regular Expressions, to use to exclude certain files. The exclude pattern will be applied to a file's basename.

Example

Given the following directory structure:

my-module/
    index.js
    foo.js
    foo-bar/
        Baz.js
        buz.js

If the content of my-module/index.js is the following:

module.exports = require("modular")();

Would produce the following module/object structure:

{
    foo: {
        // the exports of my-module/foo.js
    },
    fooBar: {
        Baz: {
            // the exports of my-module/Baz.js
        },
        buz: {
            // the exports of my-module/buz.js
        }
    }
}

But, not really.

The actual property is not resolved (the underlying file required) until it is accessed. So, really, when first required the exported object looks like this:

{
    foo: [Getter],
    fooBar: [Getter]
}

After foo and fooBar are accessed, it would look like this:

{
    foo: {
        // the exports of my-module/foo.js
    },
    fooBar: {
        Baz: [Getter],
        buz: [Getter]
    }
}

And so on.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.