如何避免多次加载外部库? npm包,browserify和脚本标签
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何避免多次加载外部库? npm包,browserify和脚本标签相关的知识,希望对你有一定的参考价值。
我有一个用jquery构建的单页webapp。它使用了jquery,另一个库和我用npm和browserify创建的bundle.js。
Bundle.js也依赖于相同的库。
我的架构是这样的:
- 在html页面上,我加载了一些功能,允许用户与页面进行第一次交互 - 比如搜索内容
- 当用户点击所选项目时,它将从包的模块中执行整个应用程序“体验”。
例如,我需要通过<script>
加载jquery来执行第一部分(例如$(document).ready( ... )
),但是jquery也包含在bundle中。
如何避免多次加载相同的库?
这是我的app文件夹的结构:
/ index.js (graphic engine imported in myApp/index.js)
/ package.json
/- myApp
- index.js (my module)
这是html页面的结构:
<script src="jquery.js"></script>
<script src="mylibrary.js"></script>
..
</body>
<script>
$(document).ready(function(){
// here needs
// do stuff and at a certain point call the bundle module
mymodule.main( startMyApp )
})
</script>
这是我需要外部模块并在myApp / index.js中公开主模块的方式:
var jquery = require('jquery');
module.exports.main = function ( initNode ) {
var engine = require('../'); // will import index.js at root
}
这是引擎,在这里我导入jquery:
var jquery = require("jquery")
module.exports = function (graph, settings) {
// stuff
}
这是我的包含browserify指令的包:
{
"name": "myApp",
"version": "1.0.0",
"description": "Learning npm :) ",
"main": "index.js", // this is the graphic engine file
"scripts": {
"test": "test.js",
"start": "node_modules/.bin/browserify --s mymodule ./myApp/index.js > ./myApp/bundle.js"
},
"dependencies": {
"jquery": "^3.2.1",
// and here again jquery
}
}
答案
这对我有用:https://github.com/thlorenz/browserify-shim#c-config-inside-configshimjs-without-aliases
browserify的插件。我必须修改package.json,如下所示,然后可以从html导入全局脚本。
{
"name": "myApp",
"version": "1.0.0",
"description": "Yeeeh",
"main": "index.js",
"scripts": {
"test": "test.js",
"start": "node_modules/.bin/browserify --s myAppModule ./myApp/index.js > ./myApp/bundle.js"
},
"author": "you",
"dependencies": {
// my local dep
},
"devDependencies": {
"browserify-shim": "^3.8.14"
},
"browserify": {
"transform": [
"browserify-shim"
]
},
"browserify-shim": {
"jquery": "global:$",
// libraries from <script> html
}
}
以上是关于如何避免多次加载外部库? npm包,browserify和脚本标签的主要内容,如果未能解决你的问题,请参考以下文章
npm 如何测试自己本地的包(npm link, npm install ./package)