Giter VIP home page Giter VIP logo

webpack-demo's Introduction

Webpack 4 Demo · Legato 🎶

Demo project to start using and experiment with Webpack 4

GitHub license David

Start

Restore dependencies and start development server:

yarn && yarn dev

Check your browser console at localhost:8080

Features


Webpack

Install webpack

yarn add webpack webpack-cli --dev

This project started with Webpack 4 in beta version:

# add webpack 4 (currently on 4.0.0-beta.2)
yarn add webpack@next webpack-cli --dev

Zero Config (#0CJS)

Entry / Output

No need for explicit specify entry and output properties in the webpack configuration.

In Webpack 4 those fields are defaulted to:

{
    "entry": "./src",
    "output": "./dist"
}

Mode

Webpack mode reduce the required configuration for an useful build:

  • development: this mode provide useful error messages and is optimized for speed (unminified bundle)
  • production: enables optimizations out of the box (scope hoisting, tree shaking, minification, etc.)
webpack --mode production

Changes

  • Dropped Node.js 4 support. Therefore, more benefits from ES6 features (optimizations from V8).
  • Sets of defaults with production and development modes.
  • Changes on plugins (Some actives depending on mode. CommonsChunkPlugin was removed)
  • Optimizations, performance boost and many more...
  • Read changeset of Webpack v4.0.0

Articles

License

MIT © Carloluis

webpack-demo's People

Contributors

carloluis avatar

Watchers

James Cloos avatar Derick Warshaw avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.