New Developers Working Grouphttps://wiki.evergreen-ils.org/doku.php?id=newdevs:angularclient&do=
This is an Angular 15 application found under Open-ILS/src/eg2 and installed to /openils/var/web/eg2/. Note that the language used is TypeScript.
Many of the current Angular interfaces were built using Angular 12 or earlier conventions. We only use standalone components in some of the newer Angular code.
You can use the Angular DevTools extension in Chrome or Firefox to inspect and debug objects in the browser.
Command to get all routes from Angular Project:
for r in $(find src -name "routing.module.ts"); do echo $r; grep "path:\|component:\|loadChildren:" $r; done > allroutes.txt