javascript深入JavaScript

深入JavaScript Day25 - 模块化、CommonJ

2022-02-09  本文已影响0人  望穿秋水小作坊

一、认识模块化

1、下图中的代码写法,有独立的作用空间吗?

image.png

2、什么是模块化?【细细品读每句话】

image.png

3、早期JavaScript支持模块开发吗?

4、JavaScript模块化发展历史【了解一下,对于理解很多知识有帮助】?

image.png

5、通过立即执行函数也可以实现简单的模块化,代码如下,这种方式会有哪些问题?

var whyModel = (function () {
  //...一堆逻辑代码
  var whyName = "whyName";
  var age = 18;
  return {
    whyName,
    age,
  };
})();

二、认识 CommonJS

1、CommonJS规范 和 Node 是什么关系?

2、CommonJS的三个核心关键字是什么?

3、CommonJS的基本用法?

// index.js
const why = require("./why/why");
console.log(why);

// why.js
var name = "whyName";
var age = 18;
module.exports = {
  name,
  age,
};

// 输出结果
$ node index.js
{ name: 'whyName', age: 18 }

4、理解CommonJS的内部原理图解【重要,其实也是内存布局图】

image.png

5、测试代码,看why开头的日志,会输出几次?

// why.js
console.log("why1111");
var name = "whyName";
var age = 18;

console.log("why2222");
module.exports = {
  name,
  age,
};
console.log("why3333");

// index.js
console.log("index1111");

const why = require("./why/why");
const why2 = require("./why/why");

console.log("index2222");
console.log(why);
console.log(why2);
console.log("index3333");

6、module.exports 和 exports 有什么关系?

image.png

7、CommonJS的源码阅读方向【后续再说吧】

image.png

三、认识 require

1、require的本质是什么?有什么作用?

2、require 的查找过程【了解,需要深入研究再回来看】?

image.png image.png image.png

3、CommonJS的模块被多次引入,模块代码会执行多次吗?模块的加载顺序是BFS还是DFS?

image.png

4、CommonJS规范的缺点(对比ES Module)?

image.png
上一篇下一篇

猜你喜欢

热点阅读