Manifest File

Manifest File

  on every build, webpack generates some webpack runtime code, which helps webpack do its job. When there is a single bundle, the runtime code resides in it. But when multiple bundles are generated, the runtime code is extracted into the common module, here the vendor file.

  To prevent this, we need to extract out the runtime into a separate manifest file. Even though we are creating another bundle, the overhead is offset by the long term caching benefits that we obtain on the vendor file.

  

var webpack = require(‘webpack‘);
var path = require(‘path‘);

module.exports = function() {
    return {
        entry: {
            main: ‘./index.js‘ //Notice that we do not have an explicit vendor entry here
        },
        output: {
            filename: ‘[name].[chunkhash].js‘,
            path: path.resolve(__dirname, ‘dist‘)
        },
        plugins: [
            new webpack.optimize.CommonsChunkPlugin({
                name: ‘vendor‘,
                minChunks: function (module) {
                   // this assumes your vendor imports exist in the node_modules directory
                   return module.context && module.context.indexOf(‘node_modules‘) !== -1;
                }
            }),
            //CommonChunksPlugin will now extract all the common modules from vendor and main bundles
            new webpack.optimize.CommonsChunkPlugin({
                name: ‘manifest‘ //But since there are no more common modules between them we end up with just the runtime code included in the manifest file
            })
        ]
    };
}

  第一次执行vendor时,只有一个bundle,就是main。CommonsChunkPlugin会将node_modules从main中分享出来,从而成为vendor。

  第二次执行manifest时,有两个bundle,main、vender。CommonsCHunkPlugin发现两个bunlde没有公共module,所以manifest内不含任何Module。

  runtime code会放放置后最后成的bundle中。

参考:https://webpack.js.org/guides/code-splitting-libraries/#manifest-file

时间: 2024-10-27 10:36:40

Manifest File的相关文章

Android Studio中的Application Fundaments中的The Manifest File重要点记述

app必须在AndroidManifest.xml文件中声明他所有的components.该文件必须在app公告称的目录的根. manifest除了声明app的components还做了另外一堆事情: 1.认证app需要的user permissions 2.声明app所需要的最小的API Level 3.声明app使用的硬件以及需要的软件特征 4.app需要去连接的API库 5.等等 Declaring components android:icon属性指向确认app的icon资源 andro

How to build .apk file from command line(转)

How to build .apk file from command line Created on Wednesday, 29 June 2011 14:32 If you don’t want to install a number of programs for building your Android project, this article is for you. You will need only JDK, the Android SDK platform tools and

一分钟明确 VS manifest 原理

什么是vs 程序的manifest文件 manifest 是VS程序用来标明所依赖的side-by-side组建,如ATL, CRT等的清单. 为什么要有manifest文件 一台pc上,用一组建往往会有不止一个版本号(c:/windows/winsxs或系统文件夹下),程序在载入的时候,不知载入哪个,于是manifest文件来指明. manifest在哪儿,怎样创建. 假设用VS开发,能够Set通过porperty->configuration properties->linker->

error: readline/readline.h: No such file or directory

报如下错: [[email protected] rpy2-2.8.5]# python setup.py install R version 3.3.2 (2016-10-31) -- "Sincere Pumpkin Patch" /usr/lib64/R/bin/R CMD config --ldflags /usr/lib64/R/bin/R CMD config --cppflags Compilation parameters for rpy2's C components

离线缓存 manifest

程序的离线缓存由一个叫做manifest的文本文件控制,把需要离线缓存的文件列在里面即可,这个列表还可以控制需要缓存的情况,甚至当用户从缓存地址进入到没有缓存的地址应该显示什么 当浏览器下载解析了manifest文件之后,就会换取这些资源并且保存起来无网络使用 ,格式如下: CACHE MANIFEST //告诉浏览器这是一个manifest文件 # This is a comment CACHE: //每一个部分标题使用大写,这里列出需要缓存的资源/css/screen.css/css/off

通过修改manifest文件来解决Vista/Win7/Win8下应用程序兼容性问题

在Vista/Win7/Win8下,有一个系统兼容性助手功能,在安装程序安装完成或卸载完成后,可能会弹出应用程序兼容性助手相关的提示,提示程序可能安装不正确,很是烦人.如下图所示: 事实上,我们的程序兼容性是没问题的,只不过是在程序中没有指定应用程序兼容的操作系统,所以导致了这些问题.      VS2008和VS2010可以生成一个与exe应用程序相关联的.manifest文件,微软已经为该文件中添加了一个新的<compatibility> 字段, 这个字段用来指定你的应用程序可以兼容的操作

Spark 编程模型(中)

先在IDEA新建一个maven项目 我这里用的是jdk1.8,选择相应的骨架 这里选择本地在window下安装的maven 新的项目创建成功 我的开始pom.xml文件配置 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.ap

安装setuptools和pip 以及安装时报错解决

1.安装setuptools和pip 安装完python后,需要安装pip,参考网上教程有说可以用easy_install安装pip,那就先安装easy_install再安装pip,安装easy_install和pip的方法如下: wget --no-check-certificate https://pypi.python.org/packages/source/s/setuptools/setuptools-1.4.2.tar.gz tar -vxf setuptools-1.4.2.tar

Web 前端知识体系精简

Web前端技术由html.css和javascript三大部分构成,是一个庞大而复杂的技术体系,其复杂程度不低于任何一门后端语言.而我们在学习它的时候往往是先从某一个点切入,然后不断地接触和学习新的知识点,因此对于初学者很难理清楚整个体系的脉络结构.本文将对Web前端知识体系进行简单的梳理,对应的每个知识点点到为止,不作详细介绍.目的是帮助大家审查自己的知识结构是否完善,如有遗漏或不正确的地方,希望共勉. JAVASCRIPT 篇 0.基础语法 Javascript基础语法包括:变量定义.数据类