ホームページ > ウェブフロントエンド > jsチュートリアル > nodejs_json で書かれたシンプルなプロジェクト パッケージング ツール

nodejs_json で書かれたシンプルなプロジェクト パッケージング ツール

WBOY
リリース: 2016-05-16 17:34:07
オリジナル
1333 人が閲覧しました

プロジェクト コードのモジュールの読み込みと定義部分は次のとおりです:

コードをコピー コードは次のとおりです。

XX.define('ns',[ 'tool/ cookie'],function(){
});
//または
XX.define('ns.ns2','tool/cookie,tool/abc',function(){
})
//または
XX.define('ns',function(){
})

使用される js パッケージ化ツールは、ファイルをスキャンし、ロードする必要があるモジュールを照合し、最初にモジュール コードをロードします。
主な Nodejs パッケージ化ツールのコードは次のとおりです:

コードをコピー コードは次のとおりです:

//通用模块
var Util = require('util'),
    FS = require('fs'),
    getDeps = require('./getDeps'),
    Uglify = require('./uglify/uglify-js'),
    removeBOMChar = require('./removeBOM').removeBOMChar,
    PATH =require('path');

var packagedObj = {};//是否已经打包过

module.exports = function(filePath, rootPath, opts){
    opts = opts || {};

    var str = jscombo(filePath,rootPath);
    if(opts.unzip){
        return str;
    }else{
        return Uglify(str);  
    }
};

function jscombo(filePaths, rootPath){
    if(Util.isArray(filePaths)){
        return filePaths.map(function(filePath){           
            filePath = PATH.join(rootPath,filePath);

            //只打包一次
            if(packagedObj[filePath]){
                return '';
            }
            packagedObj[filePath] = 1;

            //是否存在
            if(FS.existsSync(filePath)){
                //异步读取内容
                var str = FS.readFileSync(filePath, 'utf-8');
                //移出BOM头
                str = removeBOMChar(str);
                var result = getDeps(str, rootPath);
                var content = result.content;
                content = '//' filePath 'n' content;

                //递归打包
                if(result.list){
                    return jscombo(result.list, rootPath) content;
                }               
                //返回内容
                return content;
            }else{
                //文件不存在错误信息
                console.error('jsCombo Error: ' filePath ' does not exsist! the path is:' rootPath);
                return ';alert("' filePath ' does not exsist!");';
            }           
        }).join(';n');

    }else{
        return jscombo([filePaths],rootPath);
    }
}

对于nodejs之前一直没认真学习,都是边查文档,编写的,所以代码很青涩~

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート