关于NodeJS模块开发的疑问

时间:2013-12-05 18:42:56

标签: javascript node.js commonjs node-modules

我正在尝试编写我的第一个NodeJS模块,但是我无法掌握一些概念。

这是我目前的代码( genexer 计数器/生成器):

"use strict";

var ret = require('ret');

module.exports = function (regex) {
    if (Object.prototype.toString.call(regex) === '[object RegExp]') {
        regex = regex.source;
    }

    else if (typeof regex !== 'string') {
        regex = String(regex);
    }

    try {
        var tokens = ret(regex);
    }

    catch (exception) {
        return false;
    }

    return {
        charset: '',
        reference: [],
        count: function (token) {
            var result = 0;

            if ((token.type === ret.types.ROOT) || (token.type === ret.types.GROUP)) {
                if (token.hasOwnProperty('stack') === true) {
                    result = 1;

                    token.stack.forEach(function (node) {
                        result *= count(node);
                    });
                }

                else if (token.hasOwnProperty('options') === true) {
                    var options = [];

                    token.options.forEach(function (stack, i) {
                        options[i] = 1;

                        stack.forEach(function (node) {
                            options[i] *= count(node);
                        });
                    });

                    options.forEach(function (option) {
                        result += option;
                    });
                }

                if ((token.type === ret.types.GROUP) && (token.remember === true)) {
                    reference.push(token);
                }
            }

            else if (token.type === ret.types.POSITION) {
            }

            else if (token.type === ret.types.SET) {
                token.set.forEach(function (node) {
                    if (token.not === true) {
                        if ((node.type === ret.types.CHAR) && (node.value === 10)) {
                        }
                    }

                    result += count(node);
                });
            }

            else if (token.type === ret.types.RANGE) {
                result = (token.to - token.from + 1);
            }

            else if (token.type === ret.types.REPETITION) {
                if (isFinite(token.max) !== true) {
                    return Infinity;
                }

                token.value = count(token.value);

                for (var i = token.min; i <= token.max; ++i) {
                    result += Math.pow(token.value, i);
                }
            }

            else if (token.type === ret.types.REFERENCE) {
                if (reference.hasOwnProperty(token.value - 1) === true) {
                    result = 1;
                }
            }

            else if (token.type === ret.types.CHAR) {
                result = 1;
            }

            return result;
        }(tokens),
        generate: function () {
            return false;
        },
    };
};

问题:

  1. 我在第一次迭代时是否正确调用了countcount: function (token) {}(tokens)
  2. 如何递归调用count方法?我得到一个“ReferenceError:count is not defined”
  3. 这是使用多种方法定义小模块的正确(或最佳实践)方法吗?
  4. 原谅我没有发表3个不同的问题,但我对所有术语还不是很熟悉。

1 个答案:

答案 0 :(得分:3)

  1. 立即调用闭包的约定是count: (function(args) {return function() {}})(args),但您的方式也适用于所有环境。
  2. 你不能,因为不幸的是,数量是一个关闭 - 见3。
  3. 如果要在模块内使用模块上的方法,我会在return语句之外声明模块。如果你想要一个很好的例子,请参阅underscore / lodash 源代码。
  4. 因此,您可以使用类似下面的骨架的声明来定义模块

    module.exports = function (regex) {
        //...
        var count = function(tokens) {
            //...
            return function() {
               //...
               var ret *= count(node);
    
    
               return ret;
            }
        }
        var mymod = {
            count: count(tokens)
            //...
        };
        //...
        return mymod;
    
    };