Exploring the main JavaScript libraries/frameworks/modules embedded in the platform
Let us take a closer look at Adobe Commerce’s JavaScript side. There are four main parts we will talk about, and each has its own special job:
Library/Framework |
Role |
|
Module loader |
|
Dynamic interfaces |
|
Dom manipulation and utilities |
|
JavaScript utilities |
Table 8.1 – Main JavaScript Libraries
Let’s dive deeper into each of these.
RequireJS
Adobe Commerce uses RequireJS, a JavaScript module loader that manages its JavaScript code. This tool is essential, especially if you are new to frontend development. RequireJS implements the...