Hi Everyone,
I have the following code in an AEM component:
<sly data-sly-test="${properties.showPinterestSave == 'true'}">
Unfortunately, I can’t quickly add debug output to the page due to the deployment process (PR + code promotion).
Is there any way to test or inspect ${properties.showPinterestSave} (or other component properties) at runtime on a published page without going through a deployment?
Any tips or tools you use to quickly validate component property values would be really appreciated.
Thanks!
Solved! Go to Solution.
Views
Replies
Total Likes
Hi @SanaQu,
You can debug your HTL/Sightly expression at runtime without going through a full deployment - and one of the best tools for this is the AEM HTL REPL by Adobe.
It is a web-based tool you can install on your AEM instance (author or publish) to test and evaluate HTL code and server-side JavaScript without deploying changes.
Install the package on your local AEM Author/Publish via Package Manager, and you're ready to go.
GitHub link: https://github.com/adobe/aem-htl-repl
Hi @SanaQu,
You can debug your HTL/Sightly expression at runtime without going through a full deployment - and one of the best tools for this is the AEM HTL REPL by Adobe.
It is a web-based tool you can install on your AEM instance (author or publish) to test and evaluate HTL code and server-side JavaScript without deploying changes.
Install the package on your local AEM Author/Publish via Package Manager, and you're ready to go.
GitHub link: https://github.com/adobe/aem-htl-repl
This helps! Thank you
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies