>  기사  >  웹 프론트엔드  >  nodejs_json으로 작성된 간단한 프로젝트 패키징 도구

nodejs_json으로 작성된 간단한 프로젝트 패키징 도구

WBOY
WBOY원래의
2016-05-16 17:34:071318검색

프로젝트 코드의 모듈 로딩 및 정의 부분은 다음과 같습니다.

코드 복사 코드는 다음과 같습니다.

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){                        }
            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){
                  jscombo(result.list, rootPath) 콘텐츠를 반환합니다.
}             
               //返回内容
               콘텐츠 반환
          }else{
               //文不存在错误信息
                console.error('jsCombo 오류: ' filePath '가 존재하지 않습니다! 경로:' rootPath);
                return ';alert("' filePath '가 존재하지 않습니다!");';
           }          
        }).join(';n');

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



对于nodejs 青涩 前一直没认真文档,编写的,所以代码很青涩~
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.