Expand my Community achievements bar.

SOLVED

NODE JS

Avatar

Level 2

so i use java and observed others also use JAVA to write backend functionality in AEM components 
Can we use NODE JS? 

1 Accepted Solution

Avatar

Correct answer by
Level 9

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

View solution in original post

2 Replies

Avatar

Correct answer by
Level 9

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

Avatar

Community Advisor

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!