Skip to content

Files

Latest commit

 

History

History
7 lines (4 loc) · 609 Bytes

AMD.md

File metadata and controls

7 lines (4 loc) · 609 Bytes

AMD

AMD stands for Asynchronous Module Definition. The API specifies a mechanism for defining modules such that the module and its dependencies can be asynchronously loaded. This is particularly well suited for the browser environment where synchronous loading of modules incurs performance, usability, debugging, and cross-domain access problems.

Perhaps the most popular implementation of AMD is Require JS written by Mozilla's James Burke.

AMD is an alternative to Common JS (CJS).