HomeAEM Fundamentals › CRXDE Lite

CRXDE Lite

Purpose: Use CRXDE Lite effectively and safely — the in-browser IDE for the repository.

Who this page is for

AudienceWhy it matters to you
All engineersDaily inspection tool

What it is

/crx/de — a browser IDE over the JCR: tree navigation, property editing, script editing, an access-control tab and a query tool. Think Redux DevTools with write access to production state — powerful and dangerous in equal measure.

Daily moves

TaskHow
Find where a page's content livesNavigate /content/…/jcr:content, expand component nodes
Check a component's implementationFollow the node's sling:resourceType into /apps
Test a queryTools → Query, JCR-SQL2 or XPath
Check effective type hierarchyNode's sling:resourceSuperType chain
Quick property fix on a dev boxEdit property → Save All

Safety rules

Reading /libs as documentation

The fastest way to learn any product component: find it under /libs, read its HTL and dialog. Example: how does the product page component include clientlibs? Read /libs/core/wcm/components/page/… and follow the scripts.

Quick navigation