本来是想自己写哈个人学习webpack心德的,不过网上现在已经有各种比较好的,详细的入门或者深入资源了。
所以我就简单总结了一下,我在入门webpack时看的一些博客和文档,以及顺道看到的一些觉得也应该了解的东西
webpack官方文档: https://www.webpackjs.com/concepts/
比较好的webpack入门博客:
https://segmentfault.com/a/1190000006178770
https://www.jb51.net/article/117390.htm
webpack资源汇总GitHub地址: https://github.com/kraaas/webpack-tutorial-collection
这是我在看各入门webpack时,觉得或者说自己有兴趣,也应该顺便了解一下的东西
CommonJS规范详解: http://javascript.ruanyifeng.com/nodejs/module.html (阮一峰)
https://www.jianshu.com/p/fc858878d891 (简书)
AMD规范: https://github.com/amdjs/amdjs-api/wiki/AMD (阮一峰,全英文,心疼英语渣渣的自己)
补充:
AMD规范诞生的背景:
http://www.ruanyifeng.com/blog/2012/10/asynchronous_module_definition.html
实现了AMD规范的require.js的用法:
http://www.ruanyifeng.com/blog/2012/11/require_js.html (阮一峰)
commonjs和AMD对比各优缺点,以及前端模块化的发展进程:
http://wiki.jikexueyuan.com/project/webpack-handbook/module-system.html
Node.js全局变量介绍- __dirname __filename:
http://www.runoob.com/nodejs/nodejs-global-object.html
Javascript模块化编程(一):模块的写法:
http://www.ruanyifeng.com/blog/2012/10/javascript_module.html (阮一峰)
原文地址:https://www.cnblogs.com/tu-0718/p/9464588.html