1. 程式人生 > >CommonJS,AMD,CMD區別

CommonJS,AMD,CMD區別

com commonj -c 使用 cmd sync syn 服務器 模塊

AMD (Asynchromous Module Definition) 異步模塊定義

CMD (Common Module Definition) 通用模塊定義

CommonJs

是服務器端模塊的規範,Node.js采用了這個規範。

根據CommonJS規範,一個單獨的文件就是一個模塊。加載模塊使用require方法,該方法讀取一個文件並執行,最後返回文件內部的exports對象。

CommonJS,AMD,CMD區別