Hello,
If you did not know this great tool that is webpack, you'll know a little more after reading this article!
It is based on Node, and installable via npm.
As a front-end developer, who creates or integrates templates, we need to efficiently manage our files (Javascript, CSS or SASS, Images ...), as well as their dependencies.
Webpack allows:
- To code SASS styles, then compile them into CSS,
- To write ES6 compiled in ES5 (thanks to Babel),
- Combine our scripts into one file (OptimizeCSSAssets),
- Have a server that makes changes on the fly (Hot Module Reload),
- Minify Javascript files (UglifyJS).
See you soon,
Mathieu