用nodejs写的一个简单项目打包工具
更新时间:2013年05月11日 17:02:54 作者:
项目是模块加载的,类似require.js的用法,所以简单写了一个js打包工具
项目的模块加载和定义部分代码是这样的:
复制代码 代码如下:
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之前一直没认真学习,都是边查文档,编写的,所以代码很青涩~
相关文章
JS中JSON.parse(JSON.stringify())实现深拷贝
深拷贝就是完全拷贝一份新的对象,本文主要介绍了JS中JSON.parse(JSON.stringify())实现深拷贝,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2023-08-08json-lib出现There is a cycle in the hierarchy解决办法
如果需要解析的数据间存在级联关系,而互相嵌套引用,在hibernate中极容易嵌套而抛出net.sf.json.JSONException: There is a cycle in the hierarchy异常。2010-02-02
最新评论