TranslateProject/sources/tech/20161024 Getting Started with Webpack 2.md
2016-11-06 12:24:14 +08:00

20 KiB
Raw Blame History

OneNewLife translating

Getting Started with Webpack 2

Webpack 2 will be out of beta once the documentation has been finished. But that doesnt mean you cant start using version 2 now if you know how to configure it.

What is Webpack?

At its simplest, Webpack is a module bundler for your JavaScript. However, since its release its evolved into a manager of all your front-end code (either intentionally or by the communitys will).

A task runner such as _Gulp _can handle many different preprocessers and transpilers, but in all cases, it will take a source input and crunch it into a compiled _output. _However, it does this on a case-by-case basis with no concern for the system at large. That is the burden of the developer: to pick up where the task runner left off and find the proper way for all these moving parts to mesh together in production.

Webpack attempts to lighten the developer load a bit by asking a bold question: what if there were a part of the development process that handled dependencies on its own? What if we could simply write code in such a way that the build process managed itself, based on only what was necessary in the end?

If youve been a part of the web community for the past few years, you already know the preferred method of solving a problem: _build this with JavaScript._And so Webpack attempts to make the build process easier by passing dependencies through JavaScript. But the true power of its design isnt simply the code management part; its that this management layer is 100% valid JavaScript (with Node features). Webpack gives you the ability to write valid JavaScript that has a better sense of the system at large.

In other words: _you dont write code for Webpack. You write code for your projec_t. And Webpack keeps up (with some config, of course).

In a nutshell, if youve ever struggled with any of the following:

  • Accidentally including stylesheets and JS libraries you dont need into production, bloating the size
  • Encountering scoping issues—both from CSS and JavaScript
  • Finding a good system for using Node/Bower modules in your JavaScript, or relying on a crazy backend configuration to properly utilize those modules
  • Needing to optimize asset delivery better but fearing youll break something

…then you could benefit from Webpack. It handles all the above effortlessly by letting JavaScript worry about your dependencies and load order instead of your developer brain. The best part? Webpack can even run purely on the server side, meaning you can still build progressively-enhanced websites using Webpack.

First Steps

Well use Yarn (brew install yarn) in this tutorial instead of npm, but its totally up to you; they do the same thing. From our project folder, well run the following in a terminal window to add Webpack 2 to both our global packages and our local project:

yarn global add webpack@2.1.0-beta.25 webpack-dev-server@2.1.0-beta.9
yarn add --dev webpack@2.1.0-beta.25 webpack-dev-server@2.1.0-beta.9

Well then declare a webpack configuration with a webpack.config.js file in the root of our project directory:

`'use strict';

const webpack = require("webpack");

module.exports = {
  context: __dirname + "/src",
  entry: {
    app: "./app.js",
  },
  output: {
    path: __dirname + "/dist",
    filename: "[name].bundle.js",
  },
};`

Note: ___dirname_ refers to the root of your project.

Remember that Webpack “knows” whats going in your project? It knows by reading your code (dont worry; it signed an NDA). Webpack basically does the following:

  1. Starting from the context folder, …
  2. … it looks for entry filenames …
  3. … and reads the content. Every import (ES6) or require() (Node) dependency it finds as it parses the code, it bundles for the final build. It then searches those dependencies, and those dependencies dependencies, until it reaches the very end of the “tree”—only bundling what it needed to, and nothing else.
  4. From there, Webpack bundles everything to the output.path folder, naming it using the output.filename naming template ([name] gets replaced with the object key from entry)

So if our src/app.js file looked something like this (assuming we ran yarn add --dev moment beforehand):

'use strict';
import moment from 'moment';
var rightNow = moment().format('MMMM Do YYYY, h:mm:ss a');
console.log( rightNow );
// "October 23rd 2016, 9:30:24 pm"

Wed run

webpack -p

Note: The _p_ flag is “production” mode and uglifies/minifies output.

And it would output a dist/app.bundle.js that logged the current date & time to the console. Note that Webpack automatically knew what 'moment'referred to (although if you had a moment.js file in your directory, by default Webpack would have prioritized this over your moment Node module).

Working with Multiple Files

You can specify any number of entry/output points you wish by modifying only the entry object.

Multiple files, bundled together

`'use strict';

const webpack = require("webpack");

module.exports = {
  context: __dirname + "/src",
  entry: {
    app: ["./home.js", "./events.js", "./vendor.js"],
  },
  output: {
    path: __dirname + "/dist",
    filename: "[name].bundle.js",
  },
};`

Will all be bundled together as one dist/app.bundle.js file, in array order.

Multiple files, multiple outputs

`const webpack = require("webpack");

module.exports = {
  context: __dirname + "/src",
  entry: {
    home: "./home.js",
    events: "./events.js",
    contact: "./contact.js",
  },
  output: {
    path: __dirname + "/dist",
    filename: "[name].bundle.js",
  },
};`

Alternately, you may choose to bundle multiple JS files to break up parts of your app. This will be bundled as 3 files: dist/home.bundle.jsdist/events.bundle.js, and dist/contact.bundle.js.

Advanced auto-bundling

If youre breaking up your application into multiple output bundles (useful if one part of your app has a ton of JS you dont need to load up front), theres a likelihood you may be duplicating code across those files, because it will resolve each dependency separately from one another. Fortunately, Webpack has a built-in CommonsChunk plugin to handle this:

module.exports = {
  // …
  plugins: [
    new webpack.optimize.CommonsChunkPlugin({
      name: "commons",
      filename: "commons.js",
      minChunks: 2,
    }),
  ],
// …
};

Now, across your output files, if you have any modules that get loaded 2 or more times (set by minChunks), it will bundle that into a commons.js file which you can then cache on the client side. This will result in an additional header request, sure, but you prevent the client from downloading the same libraries more than once. So there are many scenarios where this is a net gain for speed.

Developing

Webpack actually has its own development server, so whether youre developing a static site or are just prototyping your front-end, its perfect for either. To get that running, just add a devServer object to webpack.config.js:

module.exports = {
  context: __dirname + "/src",
  entry: {
    app: "./app.js",
  },
  output: {
    filename: "[name].bundle.js",
    path: __dirname + "/dist/assets",
    publicPath: "/assets",            // New
  },
  devServer: {
    contentBase: __dirname + "/src",  // New
  },
};

Now make a src/index.html file that has:

<script src="/assets/app.bundle.js"></script>

… and from your terminal, run:

webpack-dev-server

Your server is now running at localhost:8080Note how _/assets_ in the script tag matches _output.publicPath_—you can name this whatever you want (useful if you need a CDN).

Webpack will hotload any JavaScript changes as you make them without the need to refresh your browser. However, any changes to thewebpack.config.js file will require a server restart to take effect.

Globally-accessible methods

Need to use some of your functions from a global namespace? Simply set output.library within webpack.config.js:

module.exports = {
  output: {
    library: 'myClassName',
  }
};

… and it will attach your bundle to a window.myClassName instance. So using that name scope, you could call methods available to that entry point (you can read more about this setting on the documentation).

Loaders

Up until now, weve only covered working with JavaScript. Its important to start with JavaScript because thats the only language Webpack speaks. We can work with virtually any file type, as long as we pass it into JavaScript. We do that with Loaders.

A loader can refer to a preprocessor such as Sass, or a transpiler such as Babel. On NPM, theyre usually named *-loader such as sass-loader or babel-loader.

Babel + ES6

If we wanted to use ES6 via Babel in our project, wed first install the appropriate loaders locally:

yarn add --dev babel-loader babel-core babel-preset-es2015

… and then add it to webpack.config.js so Webpack knows where to use it.

module.exports = {
  // …
  module: {
    rules: [
      {
        test: /\.js$/,
        use: [{
          loader: "babel-loader",
          options: { presets: ["es2015"] }
        }],
      },

      // Loaders for other file types can go here
    ],
  },
  // …
};

A note for Webpack 1 users: the core concept for Loaders remains the same, but the syntax has improved. Until they finish the docs this may/may not be the exact preferred syntax.

This looks for the /\.js$/ RegEx search for any files that end in .js to be loaded via Babel. Webpack relies on RegEx tests to give you complete control—it doesnt limit you to file extensions or assume your code must be organized in a certain way. For example: maybe your /my_legacy_code/ folder isnt written in ES6. So you could modify the test above to be /^((?!my_legacy_folder).)*\.js$/ which would exclude that specific folder, but process the rest with Babel.

CSS + Style Loader

If we wanted to only load CSS as our application needed, we could do that as well. Lets say we have an index.js file. Well import it from there:

import styles from './assets/stylesheets/application.css';

Well get the following error: You may need an appropriate loader to handle this file type. Remember that Webpack can only understand JavaScript, so well have to install the appropriate loader:

yarn add --dev css-loader style-loader

… and then add a rule to webpack.config.js:

module.exports = {
  // …
  module: {
    rules: [
      {
        test: /\.css$/,
        use: ["style-loader", "css-loader"],
      },
      // …
    ],
  },
};

Loaders are processed in reverse array order. That means _css-loader_ will run before _style-loader_.

You may notice that even in production builds, this actually bundles your CSS in with your bundled JavaScript, and style-loader manually writes your styles to the <head>. At first glance it may seem a little kooky, but slowly starts to make more sense the more you think about it. Youve saved a header request—saving valuable time on some connections—and if youre loading your DOM with JavaScript anyway, this essentially eliminates FOUC on its own.

Youll also notice that—out of the box—Webpack has automatically resolved all of your @import queries by packaging those files together as one (rather than relying on CSSs default import which can result in gratuitious header requests and slow-loading assets).

Loading CSS from your JS is pretty amazing, because you now can modularize your CSS in powerful new ways. Say you loaded button.cssonly through button.js. This would mean if button.js is never actually used_, _its CSS wouldnt bloat out our production build. If you adhere to component-oriented CSS practices such as SMACSS or BEM, you see the value in pairing your CSS more closely with your markup + JavaScript.

CSS + Node modules

We can use Webpack to take advantage of importing Node modules using Node~ prefix. If we ran yarn add normalize.css, we could use:

@import "~normalize.css";

… and take full advantage of NPM managing our third party styles for us—versioning and all—without any copy + pasting on our part. Further, getting Webpack to bundle CSS for us has obvious advantages over using CSSs default import, saving the client from gratuitous header requests and slow load times.

Update: this and the following section have been updated for accuracy, no longer confusing using CSS Modules to simply import Node modules. Thanks to Albert Fernández for the help!

CSS Modules

You may have heard of CSS Modules, which takes the C out of CSS. It typically works best only if youre building the DOM with JavaScript, but in essence, it magically scopes your CSS classes to the JavaScript file that loaded it (learn more about it here). If you plan on using it, CSS Modules comes packaged with css-loader (yarn add --dev css-loader):

module.exports = {
  // …
  module: {
    rules: [
      {
        test: /\.css$/,
        use: [
          "style-loader",
          { loader: "css-loader", options: { modules: true } }
        ],
      },
      // …
    ],
  },
};

Note: for _css-loader_ were now using the expanded object syntax to pass an option to it. You can use a string instead as shorthand to use the default options, as were still doing with _style-loader_.


Its worth noting that you can actually drop the ~ when importing Node Modules with CSS Modules enabled (e.g.: @import "normalize.css";). However, you may encounter build errors now when you @import your own CSS. If youre getting “cant find ___” errors, try adding a resolve object to webpack.config.js to give Webpack a better understanding of your intended module order.

const path = require("path");
module.exports = {
  //…
  resolve: {
    modules: [path.resolve(__dirname, "src"), "node_modules"]
  },
};

We specified our source directory first, and then node_modules. So Webpack will handle resolution a little better, first looking through our source directory and then the installed Node modules, in that order (replace "src" and "node_modules" with your source and Node module directories, respectively).

Sass

Need to use Sass? No problem. Install:

yarn add --dev sass-loader node-sass

And add another rule:

module.exports = {
  // …
  module: {
    rules: [
      {
        test: /\.(sass|scss)$/,
        use: [
          "style-loader",
          "css-loader",
          "sass-loader",
        ]
      } 
      // …
    ],
  },
};

Then when your Javascript calls for an import on a .scss or .sass file, Webpack will do its thing.

CSS bundled separately

Maybe youre dealing with progressive enhancement; maybe you need a separate CSS file for some other reason. We can do that easily by swapping out style-loader with extract-text-webpack-plugin in our config without having to change any code. Take our example app.js file:

import styles from './assets/stylesheets/application.css';

Lets install the plugin locally (we need the beta version for this as of Oct 2016)…

yarn add --dev extract-text-webpack-plugin@2.0.0-beta.4

… and add to webpack.config.js:

const ExtractTextPlugin = require("extract-text-webpack-plugin");
module.exports = {
  // …
  module: {
    rules: [
      {
        test: /\.css$/,
        use: [
          ExtractTextPlugin.extract("css"),
          { loader: "css-loader", options: { modules: true } },
        ],
      },

      // …
    ]
  },
  plugins: [
    new ExtractTextPlugin({
      filename: "[name].bundle.css",
      allChunks: true,
    }),
  ],
};

Now when running webpack -p youll also notice an app.bundle.css file in your output directory. Simply add a <link> tag to that file in your HTML as you would normally.

HTML

As you might have guessed, theres also an [html-loader][6] plugin for Webpack. However, when we get to loading HTML with JavaScript, this is about the point where we branch off into a myriad of differing approaches, and I cant think of one single example that would set you up for whatever youre planning on doing next. Typically, youd load HTML for the purpose of using JavaScript-flavored markup such as JSX or Mustache or Handlebars to be used within a larger system such as ReactAngularVue, or Ember.

So Ill end the tutorial here: you can load markup with Webpack, but by this point youll be making your own decisions about your architecture that neither I nor Webpack can make for you. But using the above examples for reference and searching for the right loaders on NPM should be enough to get you going.

Thinking in Modules

In order to get the most out of Webpack, youll have to think in modules—small, reusable, self-contained processes that do one thing and one thing well. That means taking something like this:

└── js/
    └── application.js   // 300KB of spaghetti code

… and turning it into this:

└── js/
    ├── components/
    │   ├── button.js
    │   ├── calendar.js
    │   ├── comment.js
    │   ├── modal.js
    │   ├── tab.js
    │   ├── timer.js
    │   ├── video.js
    │   └── wysiwyg.js
    │
    └── application.js  // ~ 1KB of code; imports from ./components/

The result is clean, reusable code. Each individual component depends on import-ing its own dependencies, and export-ing what it wants to make public to other modules. Pair this with Babel + ES6, and you can utilize JavaScript Classes for great modularity, and _dont-think-about-it _scoping that just works.

For more on modules, see this excellent article by Preethi Kasreddy.


Further Reading


via: https://blog.madewithenvy.com/getting-started-with-webpack-2-ed2b86c68783#.oozfpppao

作者:Drew Powers

译者:译者ID

校对:校对者ID

本文由 LCTT 原创编译,Linux中国 荣誉推出