- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我尝试使用 1200 个模块(95% 的 vendor )在观察模式下优化我们的 6s 构建时间。我试着了解正在发生的事情,这样我就可以让它更快。
我不明白的地方:
事实:
webpack 配置如下:
var HtmlWebpackPlugin = require('html-webpack-plugin');
var ExtractTextPlugin = require('extract-text-webpack-plugin');
var WatchIgnorePlugin = require('watch-ignore-webpack-plugin')
var CopyWebpackPlugin = require('copy-webpack-plugin');
var path = require('path');
var webpack = require('webpack');
function isExternal(module) {
var userRequest = module.userRequest;
if (typeof userRequest !== 'string') {
return false;
}
return userRequest.indexOf('bower_components') >= 0 ||
userRequest.indexOf('node_modules') >= 0 ||
userRequest.indexOf('libraries') >= 0;
}
module.exports = {
context: __dirname + "/src",
cache: true,
cacheDirectory: '.cache',
entry: {
index: ["babel-polyfill", "./index"],
login: "./login"
},
resolve: {
alias: {
config: path.join(__dirname, 'src/config', `${process.env.NODE_ENV || 'development'}`)
},
modulesDirectories: [
'node_modules',
],
unsafeCache: true,
extensions: ["", ".js", ".jsx"]
},
devtool: 'eval',
module: {
loaders: [{
test: /\.scss$/,
include: /src/,
exclude: /node_modules/,
loader: ExtractTextPlugin.extract('css!sass')
}, {
test: /\.css$/,
exclude: /node_modules/,
include: /src/,
loaders: ['style', 'css?sourceMap'],
},
{
test: /\.jsx?$/,
include: /src/,
exclude: /node_modules/,
loader: "babel-loader",
query: {
"cacheDirectory": ".cache",
"presets": ["es2015", "stage-0", "react"],
"plugins": ["transform-class-properties", "transform-object-rest-spread"]
}
}],
noParse: [
/underscore\/underscore\.js$/,
/react-with-addons\.js$/,
]
},
output: {
filename: "[name].bundle.js",
path: __dirname + "/dist",
},
plugins: [
new webpack.optimize.CommonsChunkPlugin({
name: 'vendor',
minChunks: function(module) {
return isExternal(module);
},
}),
new WatchIgnorePlugin([
path.resolve(__dirname, './node_modules/'),
path.resolve(__dirname, './.git/')
]),
new CopyWebpackPlugin([
{ from: 'static', to: 'static' }
]),
new CopyWebpackPlugin([
{ from: 'login.html', to: 'login.html' }
]),
new CopyWebpackPlugin([
{ from: 'index.html', to: 'index.html' }
]),
new ExtractTextPlugin('[name].css', {
allChunks: true
})
],
watchOptions: {
poll: 300,
ignore: /node_modules/,
},
externals: {}
}
watch 模式下的输出:
[mip] (+master)> node node_modules/webpack/bin/webpack.js --watch --progress --display-chunks --display-cached --display-reasons -v
Hash: fadbfa42fdd7810886d6
Version: webpack 1.13.3
Time: 6346ms
Asset Size Chunks Chunk Names
index.bundle.js 582 kB 0 [emitted] index
login.bundle.js 8.88 kB 1 [emitted] login
vendor.bundle.js 4.9 MB 2 [emitted] vendor
index.css 87.2 kB 0 [emitted] index
login.css 44.4 kB 1 [emitted] login
static/img/logo.png 4.28 kB [emitted]
static/img/favicon.ico 270 kB [emitted]
login.html 573 bytes [emitted]
index.html 574 bytes [emitted]
chunk {0} index.bundle.js, index.css (index) 519 kB {2} [rendered]
[0] multi index 40 bytes {0} [built]
+ 100 hidden modules
chunk {1} login.bundle.js, login.css (login) 7.33 kB {2} [rendered]
+ 5 hidden modules
chunk {2} vendor.bundle.js (vendor) 4.41 MB [rendered]
+ 1191 hidden modules
最佳答案
如果您想加快初始开发构建速度,您将希望减少 Webpack 花在分析 block 上的时间,减少 HTTP 请求的数量,为增量更改引入 HMR..
您可以从删除 CommonsChunkPlugin
和 ExtractTextPlugin
开始。如果您希望从等式中获取 vendor 模块,那么您可以在一次编译中使用 DllPlugin
将它们构建为一个库,然后继续使用 DllReferencePlugin
将它们重新用于您的主包编译只要 vendor 来源不变。您可以在 optimization documentation 中阅读更多相关信息, 但这是一个很好的 article by Rob Knight他在其中提供了更多详细信息。
最后,当配置加载器时,真的没有必要询问 Webpack 是否正确地使 block 无效。他们装备精良,可以跟踪磁盘上的依赖项,并将明智地使任何后续内容无效。我可以推荐webpack-bundle-analyzer分析您的输出。
关于javascript - 了解 Webpack 输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40958318/
我开始在 Ethereum blockchain 上了解如何开发智能合约以及如何写 web-script用于与智能合约交互(购买、销售、统计......)我得出了该怎么做的结论。我想知道我是否正确理解
我正在 UIView 中使用 CATransform3DMakeRotation,并且我正在尝试进行 45º,变换就像向后放置一样: 这是我拥有的“代码”,但显然没有这样做。 CATransform3
我目前正在测试 WebRTC 的功能,但我有一些脑逻辑问题。 WebRTC 究竟是什么? 我只读了“STUN”、“P2P”和其他...但是在技术方面什么是正确的 WebRTC(见下一个) 我需要什么
我在看 DelayedInit在 Scala in Depth ... 注释是我对代码的理解。 下面的 trait 接受一个非严格计算的参数(由于 => ),并返回 Unit .它的行为类似于构造函数
谁能给我指出一个用图片和简单的代码片段解释 WCF 的资源。我厌倦了谷歌搜索并在所有搜索结果中找到相同的“ABC”文章。 最佳答案 WCF 是一项非常复杂的技术,在我看来,它的文档记录非常少。启动和运
我期待以下 GetArgs.hs打印出传递给它的参数。 import System.Environment main = do args main 3 4 3 :39:1: Coul
private int vbo; private int ibo; vbo = glGenBuffers(); ibo = glGenBuffers(); glBindBuffer(GL_ARRAY_
我正在尝试一个 for 循环。我添加了一个 if 语句以在循环达到 30 时停止循环。 我见过i <= 10将运行 11 次,因为循环在达到 10 次时仍会运行。 如果有设置 i 的 if 语句,为什
我正在尝试了解 WSGI 的功能并需要一些帮助。 到目前为止,我知道它是一种服务器和应用程序之间的中间件,用于将不同的应用程序框架(位于服务器端)与应用程序连接,前提是相关框架具有 WSGI 适配器。
我是 Javascript 的新手,我正在尝试绕过 while 循环。我了解它们的目的,我想我了解它们的工作原理,但我在使用它们时遇到了麻烦。 我希望 while 值自身重复,直到两个随机数相互匹配。
我刚刚偶然发现Fabric并且文档并没有真正说明它是如何工作的。 我有根据的猜测是您需要在客户端和服务器端都安装它。 Python 代码存储在客户端,并在命令运行时通过 Fabric 的有线协议(pr
我想了解 ConditionalWeakTable .和有什么区别 class ClassA { static readonly ConditionalWeakTable OtherClass
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 5年前关闭。 Improve this questi
我还没有成功找到任何可以引导我理解 UIPickerView 和 UIPickerView 模型的好例子。有什么建议吗? 最佳答案 为什么不使用默认的 Apple 文档示例?这是来自苹果文档的名为 U
我在看foldM为了获得关于如何使用它的直觉。 foldM :: Monad m => (a -> b -> m a) -> a -> [b] -> m a 在这个简单的例子中,我只返回 [Just
答案What are _mm_prefetch() locality hints?详细说明提示的含义。 我的问题是:我想要哪一个? 我正在处理一个被重复调用数十亿次的函数,其中包含一些 int 参数。
我一直在读这个article了解 gcroot 模板。我明白 gcroot provides handles into the garbage collected heap 然后 the handle
提供了一个用例: 流处理架构;事件进入 Kafka,然后由带有 MongoDB 接收器的作业进行处理。 数据库名称:myWebsite集合:用户 并且作业接收 users 集合中的 user 记录。
你好 我想更详细地了解 NFS 文件系统。我偶然发现了《NFS 图解》这本书,不幸的是它只能作为谷歌图书提供,所以有些页面丢失了。有人可能有另一个很好的资源,这将是在较低级别上了解 NFS 的良好开始
我无法理解这个问题,哪个更随机? rand() 或: rand() * rand() 我发现这是一个真正的脑筋急转弯,你能帮我吗? 编辑: 凭直觉,我知道数学答案是它们同样随机,但我忍不住认为,如果您
我是一名优秀的程序员,十分优秀!