|
1 | | -- [2016-Optimizing Webpack build times and improving caching with DLL bundles](https://robertknight.github.io/posts/webpack-dll-plugins/) |
2 | | -- [2017-webpack bits: Getting the most out of the CommonsChunkPlugin()](https://parg.co/bQb): |
3 | | -- [2017-webpack for real tasks: bundling front-end and adding compilation【Series】](https://iamakulov.com/notes/all/webpack-for-real-tasks-part-1/): Bundling front-end and adding compilation ,Decreasing front-end size and improving caching, Speeding up build and improving the development workflow |
4 | | -# Plugin |
5 | | - |
6 | | -- [preload-webpack-plugin](https://github.com/googlechrome/preload-webpack-plugin): A Webpack plugin for wiring up link `<rel='preload'>` (and prefetch) - supports async chunks |
| 1 | +# Webpack Reference |
7 | 2 |
|
8 | | -- [Vendor and code splitting in webpack 2](https://medium.com/@adamrackis/vendor-and-code-splitting-in-webpack-2-6376358f1923#.4ma6usgf0) |
9 | 3 | - [Webpack 中文社区](https://doc.webpack-china.org/)
|
10 | | -- [Getting Started with webpack 2](https://blog.madewithenvy.com/getting-started-with-webpack-2-ed2b86c68783#.3ksiast1f) |
11 | | -- [Intro to Webpack](https://medium.com/@kimberleycook/intro-to-webpack-1d035a47028d#.4m8p1xh37) |
12 | 4 |
|
13 | | -### Tutorials & Docs |
| 5 | +## Book: 书籍 |
| 6 | + |
| 7 | +- [2015-React Webpack Cookbook【Book】](https://fakefish.github.io/react-webpack-cookbook/) |
| 8 | + |
| 9 | +# Tutorial: 教程 |
14 | 10 |
|
15 | 11 | - [webpack-your-bags](http://blog.madewithlove.be/post/webpack-your-bags/)
|
16 | 12 | - [Webpack 入门指迷](http://segmentfault.com/a/1190000002551952)
|
17 | 13 | - [Webpack-howto](https://github.com/petehunt/webpack-howto)
|
18 | | -- [Pro React 附录:Webpack for React](http://www.pro-react.com/materials/appendixA/) |
19 | 14 | - [Webpack 中文文档翻译](https://github.com/liunian/webpack-doc/blob/master/SUMMARY.md)
|
20 | 15 | - [Webpack——令人困惑的地方](https://segmentfault.com/a/1190000005089993?hmsr=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io)
|
| 16 | +- [2016-Getting Started with Webpack 2](https://blog.madewithenvy.com/getting-started-with-webpack-2-ed2b86c68783#.3ksiast1f) |
| 17 | +- [2017-Intro To Webpack](https://medium.com/@kimberleycook/intro-to-webpack-1d035a47028d?source=linkShare-fe48c4221a4c-1482154145) |
| 18 | +- [2017-How to setup Webpack +2.0 from scratch in 2017【Series】](https://medium.com/@wesharehoodies/simple-beginner-guide-for-webpack-2-0-from-scratch-part-v-495dba627718) |
| 19 | +- [2017-Webpack: A Detailed Introduction](https://www.smashingmagazine.com/2017/02/a-detailed-introduction-to-webpack/): JavaScript module bundling has been around for a while. RequireJS had its first commits in 2009, then Browserify made its debut, and since then several other bundlers have spawned across the Internet. Among that group, webpack has jumped out as one of the best. If you’re not familiar with it, I hope this article will get you started with this powerful tool. |
21 | 20 |
|
22 | | -### Practices & Resources |
| 21 | +#Feature: 特征 |
23 | 22 |
|
24 | | -- [基于webpack搭建前端工程解决方案探索](http://www.infoq.com/cn/articles/frontend-engineering-webpack?hmsr=toutiao.io&utm_campaign=rightbar_v2&utm_content=link_text&utm_medium=toutiao.io&utm_source=toutiao.io) |
25 | | -- [WebPack 常用功能介绍](http://segmentfault.com/a/1190000004172052?utm_source=tuicool&utm_medium=referral) |
26 | | -- [基于 Webpack 的前端资源构建方案](http://lifei.github.io/2015/12/20/webpack/#___8) |
27 | | - |
28 | | -### Books & Tools |
29 | | -- [react-webpack-cookbook](https://fakefish.github.io/react-webpack-cookbook/) |
| 23 | +- [2017-Brief introduction to scope hoisting in Webpack](https://parg.co/beE): On its third major release, Webpack introduced a new feature: scope hoisting. Many developers are already exposing data showing great positive impacts on the initial execution time of their bundles. |
| 24 | +- [2017-How to use Webpack’s new "magic comment" feature with React Universal Component + SSR](https://parg.co/b9A): Webpack 2.4.0, which came out a few weeks ago, launched with a very interesting new feature: "magic comments." In combination with dynamic imports, "magic comments" greatly simplify code-splitting + server-side rendering. |
| 25 | +- [2017-webpack bits: Getting the most out of the CommonsChunkPlugin()](https://parg.co/bQb): |
30 | 26 |
|
| 27 | +# Plugin: 插件 |
31 | 28 |
|
32 | | -# Plugin |
33 | 29 |
|
34 | 30 | - [Webpack Dashboard【Project】](https://github.com/FormidableLabs/webpack-dashboard)
|
35 | 31 | - [Webpack Bundle Analyzer【Project】](https://github.com/th0r/webpack-bundle-analyzer)
|
| 32 | + |
| 33 | +- [preload-webpack-plugin](https://github.com/googlechrome/preload-webpack-plugin): A Webpack plugin for wiring up link `<rel='preload'>` (and prefetch) - supports async chunks |
| 34 | + |
| 35 | +- [Vendor and code splitting in webpack 2](https://medium.com/@adamrackis/vendor-and-code-splitting-in-webpack-2-6376358f1923#.4ma6usgf0) |
| 36 | +- [Webpack 中文社区](https://doc.webpack-china.org/) |
| 37 | +- [Getting Started with webpack 2](https://blog.madewithenvy.com/getting-started-with-webpack-2-ed2b86c68783#.3ksiast1f) |
| 38 | +- [Intro to Webpack](https://medium.com/@kimberleycook/intro-to-webpack-1d035a47028d#.4m8p1xh37) |
| 39 | + |
| 40 | + |
| 41 | +# Practices & Resources |
| 42 | + |
| 43 | +- [2017-webpack for real tasks: bundling front-end and adding compilation【Series】](https://iamakulov.com/notes/all/webpack-for-real-tasks-part-1/): Bundling front-end and adding compilation ,Decreasing front-end size and improving caching, Speeding up build and improving the development workflow |
| 44 | +- [基于 Webpack 搭建前端工程解决方案探索](http://www.infoq.com/cn/articles/frontend-engineering-webpack?hmsr=toutiao.io&utm_campaign=rightbar_v2&utm_content=link_text&utm_medium=toutiao.io&utm_source=toutiao.io) |
| 45 | +- [WebPack 常用功能介绍](http://segmentfault.com/a/1190000004172052?utm_source=tuicool&utm_medium=referral) |
| 46 | +- [基于 Webpack 的前端资源构建方案](http://lifei.github.io/2015/12/20/webpack/#___8) |
| 47 | +- [2016-Optimizing Webpack build times and improving caching with DLL bundles](https://robertknight.github.io/posts/webpack-dll-plugins/) |
| 48 | + |
| 49 | + |
0 commit comments