프로젝트 코드의 모듈 로딩 및 정의 부분은 다음과 같습니다.
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 青涩 前一直没认真文档,编写的,所以代码很青涩~