SlideShare a Scribd company logo
Code Splitting in Practice - Shanghai JS Meetup May 2016
Who Am I
Xeodou@Wiredcraft
github.com/xeodou
Code Splitting
In Practice
Why?
Cacheable
1.Decrease the file size
2.Vendor modules
3.Most low frequency modules
How?
const webpack = require("webpack");
module.exports = {
entry: {
app: "./app.js",
vendor: ["react", “react-dom", ...],
},
output: {
filename: "[name].bundle.js"
},
plugins: [
new webpack.optimize.CommonsChunkPlugin("vendor","vendor.bundle.js")
]
};
Advance?
Can we make it better?
Pluggable?
MillPlugin.prototype.apply = function (compiler) {
var name = this.options.prefix + "/" + this.options.name;
compiler.plugin("compilation", function (compilation) {
compilation.mainTemplate.plugin("render", function (bootstrapSource, chunk, hash, moduleTemplate,
dependencyTemplates) {
var source = new ConcatSource();
source.add("webpackJsonp(['" + name + "'],");
var modules = compilation.mainTemplate.renderChunkModules(chunk, moduleTemplate, dependencyTemplates,
"/******/ ");
source.add(compilation.mainTemplate.applyPluginsWaterfall("modules", modules, chunk, hash,
moduleTemplate, dependencyTemplates));
source.add(")");
return source;
});
compilation.plugin("optimize-module-ids", function (modules) {
modules.forEach(function (module) {
module.id = name + (module.index > 0 ? ("/" + module.index) : '');
});
});
});
};
const	webpack	=	require('webpack');	
const	MillPlugin	=	require('webpack-mill-plugin');	
module.exports	=	{	
	entry:	'./index',	
		output:	{	
				filename:	'modern.js',	
			publicPath:	'./',	
		},	
		plugins:	[	
				new	MillPlugin('modern'),	
		]	
};
WebpackJsonp(["themes/modern"],{
"themes/modern":function(e,t,a){
"use strict";
e.exports={ }
}
})
require(`themes/${window.MillConfig.theme}`)
Mill
github.com/graffie/mill
github.com/graffie/webpack-mill-plugin
Event organised by
“Technology with Impact”
http://wiredcraft.com/

More Related Content

What's hot (20)

PDF
Celery
Fatih Erikli
 
PPTX
Mule esb data weave multi input data
AnilKumar Etagowni
 
PDF
Ansible best practices
StephaneFlotat1
 
PDF
Introduction to ansible galaxy
Ivan Serdyuk
 
PPTX
Cyansible
Alan Norton
 
PDF
Future Decoded - Node.js per sviluppatori .NET
Gianluca Carucci
 
PDF
Beginning Jquery In Drupal Theming
Rob Knight
 
PDF
Network Automation with Ansible
Anas
 
PPTX
Node.js in a heterogeneous system
Alexey (Mr_Mig) Migutsky
 
PDF
"Service Worker: Let Your Web App Feel Like a Native "
FDConf
 
PPT
Migraine Drupal - syncing your staging and live sites
drupalindia
 
PDF
Configuration Management in Ansible
Bangladesh Network Operators Group
 
PDF
Ansible : what's ansible & use case by REX
Saewoong Lee
 
ODP
Box connector Mule ESB Integration
AnilKumar Etagowni
 
PDF
Cloud meets Fog & Puppet A Story of Version Controlled Infrastructure
Habeeb Rahman
 
PPTX
Python (Jinja2) Templates for Network Automation
Rick Sherman
 
PDF
Web development - technologies and tools
Yoann Gotthilf
 
PDF
Introducing Ansible
Francesco Pantano
 
PDF
Microservice Teststrategie mit Symfony2
Per Bernhardt
 
PDF
An Introduction To Testing In AngularJS Applications
Rohan Chandane
 
Celery
Fatih Erikli
 
Mule esb data weave multi input data
AnilKumar Etagowni
 
Ansible best practices
StephaneFlotat1
 
Introduction to ansible galaxy
Ivan Serdyuk
 
Cyansible
Alan Norton
 
Future Decoded - Node.js per sviluppatori .NET
Gianluca Carucci
 
Beginning Jquery In Drupal Theming
Rob Knight
 
Network Automation with Ansible
Anas
 
Node.js in a heterogeneous system
Alexey (Mr_Mig) Migutsky
 
"Service Worker: Let Your Web App Feel Like a Native "
FDConf
 
Migraine Drupal - syncing your staging and live sites
drupalindia
 
Configuration Management in Ansible
Bangladesh Network Operators Group
 
Ansible : what's ansible & use case by REX
Saewoong Lee
 
Box connector Mule ESB Integration
AnilKumar Etagowni
 
Cloud meets Fog & Puppet A Story of Version Controlled Infrastructure
Habeeb Rahman
 
Python (Jinja2) Templates for Network Automation
Rick Sherman
 
Web development - technologies and tools
Yoann Gotthilf
 
Introducing Ansible
Francesco Pantano
 
Microservice Teststrategie mit Symfony2
Per Bernhardt
 
An Introduction To Testing In AngularJS Applications
Rohan Chandane
 

Viewers also liked (16)

PDF
Applying empirical research on videogame player types to inform UI/UX design
Wiredcraft
 
PPTX
Presentation sport
Mubarak Al junaibi
 
PDF
Practical Advice for the Confused Designer - Dec 2015 UI/UX Meetup Shanghai
Wiredcraft
 
PDF
UX in Industrial Internet Solutions - May 2016 UI/UX Meetup Shanghai
Wiredcraft
 
PDF
Kalle Mallikarjuna
Mallikarjuna Kalle
 
PDF
Exporting to Uganda ? What is PvOC ?
Mugula Joseph
 
PDF
Designing with Empathy - January 2016 UI/UX Meetup Shanghai
Wiredcraft
 
PDF
What is pca pdf
Mugula Joseph
 
PDF
Product Design at Wiredcraft - May 2016 UI/UX Meetup Shanghai
Wiredcraft
 
PDF
Realtime Apps with JavaScript
Wiredcraft
 
PDF
Wander in the Dockershop - May Docker Meetup Shanghai
Wiredcraft
 
PDF
UI/UX: Where do you draw the line? by Muhammad Elmelegy
Wiredcraft
 
PPTX
Pseudocyst
Nooriya Afghan
 
PPTX
Antepartum Hemorrhage
Nooriya Afghan
 
PDF
B499355김세랑 midterm project1
KimSerang
 
PDF
Document splitting in New GL in SAP
Rajesh Shanbhag
 
Applying empirical research on videogame player types to inform UI/UX design
Wiredcraft
 
Presentation sport
Mubarak Al junaibi
 
Practical Advice for the Confused Designer - Dec 2015 UI/UX Meetup Shanghai
Wiredcraft
 
UX in Industrial Internet Solutions - May 2016 UI/UX Meetup Shanghai
Wiredcraft
 
Kalle Mallikarjuna
Mallikarjuna Kalle
 
Exporting to Uganda ? What is PvOC ?
Mugula Joseph
 
Designing with Empathy - January 2016 UI/UX Meetup Shanghai
Wiredcraft
 
What is pca pdf
Mugula Joseph
 
Product Design at Wiredcraft - May 2016 UI/UX Meetup Shanghai
Wiredcraft
 
Realtime Apps with JavaScript
Wiredcraft
 
Wander in the Dockershop - May Docker Meetup Shanghai
Wiredcraft
 
UI/UX: Where do you draw the line? by Muhammad Elmelegy
Wiredcraft
 
Pseudocyst
Nooriya Afghan
 
Antepartum Hemorrhage
Nooriya Afghan
 
B499355김세랑 midterm project1
KimSerang
 
Document splitting in New GL in SAP
Rajesh Shanbhag
 
Ad

Similar to Code Splitting in Practice - Shanghai JS Meetup May 2016 (20)

PPTX
Webpack
Anjali Chawla
 
PPTX
Cut it up
FITC
 
PPTX
Webpack Introduction
Anjali Chawla
 
PPTX
webpack introductionNotice Demystifyingf
MrVMNair
 
PDF
A re introduction to webpack - reactfoo - mumbai
Praveen Puglia
 
PDF
Webpack: from 0 to 2
Alessandro Bellini
 
PDF
Webpack Encore Symfony Live 2017 San Francisco
Ryan Weaver
 
PDF
Bundle your modules with Webpack
Jake Peyser
 
PDF
Symfony Live 2018 - Développez votre frontend avec ReactJS et Symfony Webpack...
Alain Hippolyte
 
PDF
Front-end build tools - Webpack
Razvan Rosu
 
PPT
Webpack
Mallikarjuna G D
 
PPTX
WEBPACK
home
 
PDF
Webpack: What it is, What it does, Whether you need it
Mike Wilcox
 
PDF
Curing Webpack Cancer
Neel Shah
 
PPTX
Javascript Bundling and modularization
stbaechler
 
PPTX
002. Working with Webpack
Binh Quan Duc
 
PPTX
Improving build solutions dependency management with webpack
NodeXperts
 
PDF
Warsaw Frontend Meetup #1 - Webpack
Radosław Rosłaniec
 
PDF
ReactJS Workflows
Cem Arguvanlı
 
Webpack
Anjali Chawla
 
Cut it up
FITC
 
Webpack Introduction
Anjali Chawla
 
webpack introductionNotice Demystifyingf
MrVMNair
 
A re introduction to webpack - reactfoo - mumbai
Praveen Puglia
 
Webpack: from 0 to 2
Alessandro Bellini
 
Webpack Encore Symfony Live 2017 San Francisco
Ryan Weaver
 
Bundle your modules with Webpack
Jake Peyser
 
Symfony Live 2018 - Développez votre frontend avec ReactJS et Symfony Webpack...
Alain Hippolyte
 
Front-end build tools - Webpack
Razvan Rosu
 
WEBPACK
home
 
Webpack: What it is, What it does, Whether you need it
Mike Wilcox
 
Curing Webpack Cancer
Neel Shah
 
Javascript Bundling and modularization
stbaechler
 
002. Working with Webpack
Binh Quan Duc
 
Improving build solutions dependency management with webpack
NodeXperts
 
Warsaw Frontend Meetup #1 - Webpack
Radosław Rosłaniec
 
ReactJS Workflows
Cem Arguvanlı
 
Ad

More from Wiredcraft (13)

PDF
Untold Stories - June 2016 UI/UX Meetup Berlin
Wiredcraft
 
PDF
How to Survive your Boring Day job by starting a personal design project - De...
Wiredcraft
 
PDF
The Difference Between Chinese and American Apps - February 2016 UI/UX Meetup...
Wiredcraft
 
PDF
JavaScript & Hardware - April 2016 JavaScript Shanghai Meetup
Wiredcraft
 
PDF
Distribute Development Environment by docker-compose - May 2016 Docker Meetup...
Wiredcraft
 
PDF
Open source based container solution in Azure - May Docker Meetup
Wiredcraft
 
PDF
How meditating ten minutes per day can improve your design workflow by Floria...
Wiredcraft
 
PDF
Pm2 remi-robert
Wiredcraft
 
PDF
Reason vs Rationalisation
Wiredcraft
 
PDF
Questioning Smart in Design
Wiredcraft
 
PDF
Getting Started with User Interviews
Wiredcraft
 
PDF
How and When to Use FalcorJS
Wiredcraft
 
PDF
How the Bay Area Company Cultures Impact a Chinese Designer
Wiredcraft
 
Untold Stories - June 2016 UI/UX Meetup Berlin
Wiredcraft
 
How to Survive your Boring Day job by starting a personal design project - De...
Wiredcraft
 
The Difference Between Chinese and American Apps - February 2016 UI/UX Meetup...
Wiredcraft
 
JavaScript & Hardware - April 2016 JavaScript Shanghai Meetup
Wiredcraft
 
Distribute Development Environment by docker-compose - May 2016 Docker Meetup...
Wiredcraft
 
Open source based container solution in Azure - May Docker Meetup
Wiredcraft
 
How meditating ten minutes per day can improve your design workflow by Floria...
Wiredcraft
 
Pm2 remi-robert
Wiredcraft
 
Reason vs Rationalisation
Wiredcraft
 
Questioning Smart in Design
Wiredcraft
 
Getting Started with User Interviews
Wiredcraft
 
How and When to Use FalcorJS
Wiredcraft
 
How the Bay Area Company Cultures Impact a Chinese Designer
Wiredcraft
 

Recently uploaded (20)

PDF
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
PPTX
OpenChain @ OSS NA - In From the Cold: Open Source as Part of Mainstream Soft...
Shane Coughlan
 
PDF
vMix Pro 28.0.0.42 Download vMix Registration key Bundle
kulindacore
 
PDF
Top Agile Project Management Tools for Teams in 2025
Orangescrum
 
PDF
Driver Easy Pro 6.1.1 Crack Licensce key 2025 FREE
utfefguu
 
PDF
Online Queue Management System for Public Service Offices in Nepal [Focused i...
Rishab Acharya
 
PDF
Wondershare PDFelement Pro Crack for MacOS New Version Latest 2025
bashirkhan333g
 
PDF
AI + DevOps = Smart Automation with devseccops.ai.pdf
Devseccops.ai
 
PPTX
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
PDF
IDM Crack with Internet Download Manager 6.42 Build 43 with Patch Latest 2025
bashirkhan333g
 
PDF
MiniTool Partition Wizard Free Crack + Full Free Download 2025
bashirkhan333g
 
PPTX
Transforming Mining & Engineering Operations with Odoo ERP | Streamline Proje...
SatishKumar2651
 
PDF
HiHelloHR – Simplify HR Operations for Modern Workplaces
HiHelloHR
 
PDF
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
PPTX
Agentic Automation Journey Session 1/5: Context Grounding and Autopilot for E...
klpathrudu
 
PDF
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
PDF
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pdf
Varsha Nayak
 
PDF
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
PPTX
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
PPTX
Migrating Millions of Users with Debezium, Apache Kafka, and an Acyclic Synch...
MD Sayem Ahmed
 
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
OpenChain @ OSS NA - In From the Cold: Open Source as Part of Mainstream Soft...
Shane Coughlan
 
vMix Pro 28.0.0.42 Download vMix Registration key Bundle
kulindacore
 
Top Agile Project Management Tools for Teams in 2025
Orangescrum
 
Driver Easy Pro 6.1.1 Crack Licensce key 2025 FREE
utfefguu
 
Online Queue Management System for Public Service Offices in Nepal [Focused i...
Rishab Acharya
 
Wondershare PDFelement Pro Crack for MacOS New Version Latest 2025
bashirkhan333g
 
AI + DevOps = Smart Automation with devseccops.ai.pdf
Devseccops.ai
 
AEM User Group: India Chapter Kickoff Meeting
jennaf3
 
IDM Crack with Internet Download Manager 6.42 Build 43 with Patch Latest 2025
bashirkhan333g
 
MiniTool Partition Wizard Free Crack + Full Free Download 2025
bashirkhan333g
 
Transforming Mining & Engineering Operations with Odoo ERP | Streamline Proje...
SatishKumar2651
 
HiHelloHR – Simplify HR Operations for Modern Workplaces
HiHelloHR
 
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
Agentic Automation Journey Session 1/5: Context Grounding and Autopilot for E...
klpathrudu
 
SAP Firmaya İade ABAB Kodları - ABAB ile yazılmıl hazır kod örneği
Salih Küçük
 
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pdf
Varsha Nayak
 
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
Migrating Millions of Users with Debezium, Apache Kafka, and an Acyclic Synch...
MD Sayem Ahmed
 

Code Splitting in Practice - Shanghai JS Meetup May 2016