NODE JS | Community
Skip to main content
Best answer by daniel-strmecki

Hi @rohitku17,

to extend and customize AEM you need to use Java and the provided interfaces from Adobe.

You can use Node.js to build APIs and microservices that communicate with AEM.

 

Good luck,

Daniel

2 replies

daniel-strmecki
Adobe Champion and Community Advisor
daniel-strmeckiAdobe Champion and Community AdvisorAccepted solution
Adobe Champion and Community Advisor
November 6, 2024

Hi @rohitku17,

to extend and customize AEM you need to use Java and the provided interfaces from Adobe.

You can use Node.js to build APIs and microservices that communicate with AEM.

 

Good luck,

Daniel

Rohan_Garg
Community Advisor
Community Advisor
November 6, 2024

Hi @rohitku17,

What particular functionality for AEM component are you trying to achieve through NodeJS?

The primary backend components of AEM are all Java-based - Sling Servlets, OSGi bundles, JCR for content storage.

We do use Node.js in the frontend development (Using webpack)

However that being said, you can use Node.js as an intermediary. For instance, a Node.js server could act as a proxy for AEM to make third-party API calls and process data before passing it back to AEM.

 

Hope this helps!