Getting Started with Webpack 2
blog.madewithenvy.com
Getting Started with Webpack 2
1–10 of 59 posts
Re: Getting Started with Webpack 2
#2Re: Getting Started with Webpack 2
#3What is the difference from Webpack 1? This tutorial seems identical to every other Webpack getting started I've read.
"loaders" => "rules" etc.
http://javascriptplayground.com/blog/2016/10/moving-to-webpa...
Re: Getting Started with Webpack 2
#4Now, the JS community seems to be thinking more about stability and backwards compatibility. That's very welcome, at least from the perspective of this grumpy server-side developer.
Re: Getting Started with Webpack 2
#5What is the difference from Webpack 1? This tutorial seems identical to every other Webpack getting started I've read.
Re: Getting Started with Webpack 2
#6Re: Getting Started with Webpack 2
#7What is the difference from Webpack 1? This tutorial seems identical to every other Webpack getting started I've read.
Webpack now understands them without the need to convert them to commonjs/amd.
import works statically (before the JS is run), which allows webpack to make some optimizations.
(System.import() is used for dynamic (runtime) imports)
Re: Getting Started with Webpack 2
#8Re: Getting Started with Webpack 2
#9I'd hate to loose all that, but I do see the advantages of Webpack. How much control do I have with Webpack though? Can I still write my own hooks?