Upgrade to Pro — share decks privately, control downloads, hide ads and more …

The Era of Module Bundlers - GDG Dev Fest Delhi 2017

The Era of Module Bundlers - GDG Dev Fest Delhi 2017

This talk will walk everyone through the concept and practical usage of JavaScript module bundling and optimisation. With the emergence of advanced bundling tools like Webpack, the JavaScript ecosystem has been enriched with the right set of processes and tools required for creating production-ready builds, which is what this talk aims at covering.
This talk will also cover essential differences between task runners and bundlers with focus on advanced optimisation techniques like Tree shaking and Code splitting.

Arun Michael Dsouza

October 29, 2017
Tweet

More Decks by Arun Michael Dsouza

Other Decks in Programming

Transcript

  1. THE ERA OF MODULE BUNDLERS Arun Michael Dsouza Software Engineer,

    AdPushup Inc. github.com/arunmichaeldsouza twitter.com/amdsouza92 1
  2. bit.ly/block-scoping-es6 8 (function() { // Module code }); { //

    Module code } Module Systems in JavaScript
  3. Object Interface bit.ly/design-patterns-javascript 9 var math = (function() { return

    { sum: function() { // Method code }, product: function() { // Method code } }; })(); Module Systems in JavaScript
  4. AMD math.js 12 define([], function() { return { sum: function()

    { // Method code }, product: function() { // Method code } }; }); Module Systems in JavaScript
  5. COMMON JS math.js 13 var math = { sum: function()

    { // Method code }, product: function() { // Method code } }; module.exports = math; Module Systems in JavaScript
  6. COMMON JS app.js 14 var math = require('./math'); var value

    = math.sum(2, 3); Module Systems in JavaScript
  7. Common JS / AMD Module Loader REQUIRE JS AMD Module

    Loader bit.ly/require-js bit.ly/system-js SYSTEM JS 16 Module Loaders
  8. bit.ly/require-js-examples 17 <!DOCTYPE html> <html> <head> <title>Page 1</title> <script data-main="js/page1"

    src="js/lib/require.js"></script> </head> <body> </body> </html> Module Loaders
  9. MODULE BUNDLING Module Bundler Bundle Modules .css .js .js .png

    .scss 20 https://github.com/voodootikigod/logo.js/ Image source :
  10. HOW DO MODULE BUNDLERS WORK ? index.js data.js math.js api.js

    model.js db.js sql.js unit.js constants.js jsm.js Dependency Graph 21 Module Bundling
  11. USING TRANSFORMS > browserify app.js -o bundle.js -t [ babelify

    --presets [ es2015 ] ] 26 Intro to Browserify
  12. 28 grunt.initConfig({ watchFiles: { // Watcher task }, browserify: {

    // Module bundling task }, minifyCss: { // CSS optimisation task }, optimiseImages: { // Image optimisation task }, uploadOnCDN: { // Deployment task } }); Task Runners
  13. WEBPACK CONFIG FILE 32 module.exports = { entry: './app.js', output:

    { filename: './bundle.js' } }; Intro to Webpack
  14. LOADERS Transform code from one form to another that is

    part of the bundle PLUGINS Act on the bundle or bundle chunks for customisation and optimisation 34 Intro to Webpack
  15. WEBPACK BUNDLE ANALYZER plugins: [ new BundleAnalyzerPlugin( ) ] 38

    plugins: [ new BundleAnalyzerPlugin() ] Bundle Optimisation with Webpack
  16. CSS MINIFICATION 50 ... module: { loaders: [ { test:

    /\.css?$/, loader: 'css-loader', options: { minimize: true } } ] }, ... Bundle Optimisation with Webpack
  17. CSS EXTRACTION/ CSS CODE SPLITTING 52 > npm install —save-dev

    extract-text-webpack-plugin Bundle Optimisation with Webpack
  18. 53 ... module: { loaders: [ { test: /\.css?$/, use:

    ExtractTextPlugin.extract({ use: [{ loader: 'css-loader', options: { minimize: true } }] }) } ] }, plugins: [ new ExtractTextPlugin('./build/styles.min.css'), ] CSS EXTRACTION/ CSS CODE SPLITTING Bundle Optimisation with Webpack
  19. 58 app.get('*.js', function(req, res, next) { req.url = req.url +

    '.gz'; res.set('Content-Encoding', 'gzip'); next(); }); Bundle Optimisation with Webpack
  20. math.js 60 const sum = (a, b) => a +

    b; const product = (a, b) => a * b; export { sum, product }; Bundle Optimisation with Webpack
  21. app.js 61 import { sum } from './math'; const value

    = sum(2,3); console.log(value); Bundle Optimisation with Webpack
  22. ES2015 MODULES (STATIC STRUCTURE) Can be tree-shaken COMMON JS &

    OTHERS (DYNAMIC STRUCTURE) Cannot be tree-shaken 63 Bundle Optimisation with Webpack
  23. 64 "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var

    sum = function sum(a, b) { return a + b; }; var product = function product(a, b) { return a * b; }; exports.sum = sum; exports.product = product; Bundle Optimisation with Webpack
  24. HOW TREE SHAKING WORKS Babel-loader ES6 65 Bundle Optimisation with

    Webpack Minifier With { modules: false } option ES5 Tree-shaken code ES5 Code with unused exports
  25. 66 … module: { loaders: [ { test: /\.jsx?$/, loader:

    'babel-loader', query: { presets: [['es2015', { modules: false }]] } } ] }, … Bundle Optimisation with Webpack
  26. 67 "use strict"; /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a",

    function() { return sum; }); /* unused harmony export product */ var sum = function sum(a, b) { return a + b; }; var product = function product(a, b) { return a * b; }; Bundle Optimisation with Webpack
  27. 68 "use strict"; n.d(t, "a", function() { return r });

    // Only sum method exported var r = function(e, t) { return e + t } Bundle Optimisation with Webpack
  28. CSS CODE SPLITTING App code with styles Separate CSS bundle

    css-loader Bundle with processed CSS ExtractTextWebpackPlugin 70 Bundle Optimisation with Webpack
  29. CODE SPLITTING LIBRARIES bundle.js JQuery Lodash App Code vendor.js JQuery

    Lodash bundle.js App Code 71 Bundle Optimisation with Webpack
  30. index.js product.js 72 import $ from 'jquery'; // index.js code

    import $ from 'jquery'; // product.js code Bundle Optimisation with Webpack
  31. plugins: [ new webpack.optimize.CommonsChunkPlugin({ name: 'vendor', minChunks: 2 }) ]

    COMMON CHUNKS PLUGIN http://bit.ly/common-chunks-plugin 73 Bundle Optimisation with Webpack
  32. IMPLICIT COMMON VENDOR CHUNK 75 plugins: [ new webpack.optimize.CommonsChunkPlugin({ name:

    'vendor', minChunks: function (module) { return module.context && module.context.indexOf('node_modules') !== -1; } }) ] Bundle Optimisation with Webpack
  33. AUTOMATIC SPLITTING 76 import header from 'header'; import slider from

    'slider'; require.ensure(['./productList'], function(require) { require('./productList'); }); Bundle Optimisation with Webpack
  34. 78 <Route path="/product" getComponent={(location, callback) => { require.ensure([], require =>

    { callback(null, require('./productPage')) }) }}/> Bundle Optimisation with Webpack
  35. ES6 MODULES 79 ES6 Modules const sum = (a, b)

    => a + b; export default sum; import sum from './sum'; bit.ly/state-of-js-modules
  36. THE ERA OF MODULE BUNDLERS 80 THANK YOU Arun Michael

    Dsouza Software Engineer, AdPushup Inc. github.com/arunmichaeldsouza twitter.com/amdsouza92