Webpack 4 course begins – but what is Webpack?

Before considering using any kind of tool, you need to ask yourself a very important question. The question is, what problem of yours does the tool solve. Webpack is a module bundler. It means, that its purpose is to merge a group of modules (with their dependencies)…. Source: https://wanago.io/2018/07/16/webpack-4-course-part-one-entry-output-and-es6-modules/

Totally Tooling Tips: Webpack Tips

Learn how to keep your Webpack JavaScript bundles as small as possible in this new episode with Matt and Addy. They cover code-snippets for ensuring you’re minifying and splitting up your bundles efficiently.Webpack for Real Tasks: Decreasing Front-End Size and Improving Caching: https://goo.gl/uhXa… Source: https://www.youtube.com/watch?v=zFoBYfMLUCM

Webpack and Docker for Development and Deployment

Webpack and Docker are great for both development and deployment processes. When using Webpack for development, you get great dev tool support (read: webpack-dev-server and hot reloading) and can use any existing Javascript library without any efforts. Webpack can even replace Browserify…. Source: https://medium.com/@andyccs/webpack-and-docker-for-development-and-deployment-ae0e73243db4

webpack – Concepts

webpack is a module bundler. Its main purpose is to bundle JavaScript files for usage in a browser, yet it is also capable of transforming, bundling, or packaging just about any resource or asset.