[Solved] Separate Angular apps for customers and staff

You can create a new workspace with separated projects inside ng new appName –createApplication=false This command will create empty workspace. Then you can create two separated apps and share code between them. ng g application customersApp and ng g application staffApp Now you will have projects folder in your workspace and you can run the … Read more

[Solved] When using “ng generate library” what is an Angular “Library”?

An “angular library” in this context refers to self-contained Angular project that stands by itself in the projects/ directory, An Angular Library is summarized as, Many applications need to solve the same general problems, such as presenting a unified user interface, presenting data, and allowing data entry. Developers can create general solutions for particular domains … Read more