top of page

What is requireJS AMD in Magento2

Updated: Aug 21, 2020

Simply we can say, below format is the AMD module.


define(['jquery'] , function ($) { return function () {}; });


Module Vs AMD module


1. Javascript Module Pattern


(function () { this.myGlobal = function () {}; }());


In the javascript module pattern, the dependencies are assumed to be immediately available when this function executes. This limits the loading strategies for the dependencies. AMD module addresses these issues by the below way.


2. AMD Module


//Calling define with a dependency array and a factory function define(['dep1', 'dep2'], function (dep1, dep2) { //Define the module value by returning a value. return function () {}; });

  1. Register the factory function by calling define(), instead of immediately executing it.

  2. Pass dependencies as an array of string values, do not grab globals.

  3. Only execute the factory function once all the dependencies have been loaded and executed.

  4. Pass the dependent modules as arguments to the factory function.

I hope it helps to grab the idea of what is AMD in Magento 2.

Recent Posts

See All

Commentaires


Follow Me

  • LinkedIn
  • Twitter
  • Facebook
  • YouTube
  • Instagram

©2021 by Bilal Usean. Proudly created with Wix.com

bottom of page