AMDJS编译工具
2020-12-13 20:22
标签:des style blog http color 使用 amdjs-build可以将amdjs标准的js代码编译成原生的js代码,从而在发布时去除多余的模块加载器代码。 比如像这样的代码: 将会编译成类似酱紫: 安装: 使用: 项目地址: https://github.com/randomyang/amdjs-build AMDJS编译工具,搜素材,soscw.com AMDJS编译工具 标签:des style blog http color 使用 原文地址:http://www.cnblogs.com/Random/p/3815213.htmldefine("a/b", ["b", "c"], function(require, exports, module){
var $ = require("jqurey");
module.exports = function(){
return "lala";
};
});
($ROOT.a.b = function(require, exports, module){
var $ = $ROOT.jqurey();
return function(){
return "lala";
};
});
npm install amdjs-build
var build = require("amdjs-build");
build("./index.js", "./dest/index-built.js", "$ROOT");