1 Star 0 Fork 19

lik1/wxappUnpacker

forked from xiaokar/wxappUnpacker 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
wuJs.js 1.47 KB
一键复制 编辑 原始数据 按行查看 历史
xiaokar 提交于 2021-01-05 22:35 . 2021/1/5最新可用版本
const wu=require("./wuLib.js");
const path=require("path");
const UglifyJS=require("uglify-es");
const {js_beautify}=require("js-beautify");
const {VM}=require('vm2');
function jsBeautify(code){
return UglifyJS.minify(code,{mangle:false,compress:false,output:{beautify:true,comments:true}}).code;
}
function splitJs(name,cb){
let dir=path.dirname(name);
wu.get(name,code=>{
let needDelList={};
let vm=new VM({sandbox:{
require(){},
define(name,func){
let code=func.toString();
code=code.slice(code.indexOf("{")+1,code.lastIndexOf("}")-1).trim();
let bcode=code;
if(code.startsWith('"use strict";')||code.startsWith("'use strict';"))code=code.slice(13);
else if((code.startsWith('(function(){"use strict";')||code.startsWith("(function(){'use strict';"))&&code.endsWith("})();"))code=code.slice(25,-5);
let res=jsBeautify(code);
if(typeof res=="undefined"){
console.log("Fail to delete 'use strict' in \""+name+"\".");
res=jsBeautify(bcode);
}
needDelList[path.resolve(dir,name)]=-8;
wu.save(path.resolve(dir,name),jsBeautify(res));
}
}});
vm.run(code.slice(code.indexOf("define(")));
console.log("Splitting \""+name+"\" done.");
if(!needDelList[name])needDelList[name]=8;
cb(needDelList);
});
}
module.exports={jsBeautify:jsBeautify,wxsBeautify:js_beautify,splitJs:splitJs};
if(require.main===module){
wu.commandExecute(splitJs,"Split and beautify weapp js file.\n\n<files...>\n\n<files...> js files to split and beautify.");
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lik1/wxapp-unpacker.git
git@gitee.com:lik1/wxapp-unpacker.git
lik1
wxapp-unpacker
wxappUnpacker
master

搜索帮助

A270a887 8829481 3d7a4017 8829481