CommonJS和AMD/CMD

Posted 青春不迷也不彩

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CommonJS和AMD/CMD相关的知识,希望对你有一定的参考价值。

CommonJS 一种规范
AMD/CMD 基于commonJS演变而来的 规范
requirejs 是加载器对规范的实现 遵循AMD规范
seajs 遵循CMD规范

一、CommonJS

Node.js是CommonJS规范的实现,webpack 也是以CommonJS的形式来书写。

node.js的模块系统,就是参照CommonJS规范实现的。在CommonJS中,有一个全局性方法require(),用于加载模块。

二、CMD/AMD详解

AMD依赖前置 提前定义加载

CMD 依赖就近 用到的时候才加载

https://www.cnblogs.com/chenguangliang/p/5856701.html

 

以上是关于CommonJS和AMD/CMD的主要内容,如果未能解决你的问题,请参考以下文章

commonjs 与 ES6 模块化

CommonJS和AMD/CMD

CommonJs 和 Nodejs 中自定义模块

AMD CMD 和 CommonJS

什么是CommonJS?

AMDCMD和CommonJS规范(转)