Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 612 Bytes

UMD.md

File metadata and controls

10 lines (7 loc) · 612 Bytes
title excerpt
UMD
a pattern of universal module definition for JavaScript modules

UMD

UMD is a pattern of universal module definition for JavaScript modules. These modules are capable of working everywhere, be it in the client, on the server or elsewhere.

The UMD pattern typically attempts to offer compatibility with the most popular script loaders of the day (e.g RequireJS amongst others). In many cases it uses AMD as a base, with special-casing added to handle CommonJS compatibility.