DEV Community

Manthan Ankolekar
Manthan Ankolekar

Posted on

Create multiple Angular apps in one Angular app

Command to generate new new app in current app

ng generate application app-name
Enter fullscreen mode Exit fullscreen mode

To create multiple apps in one with clean structure

  • First new app with below command line
ng new app-name --create-application=false
Enter fullscreen mode Exit fullscreen mode
  • Next create one more app in above app with this command
ng generate application app-name
Enter fullscreen mode Exit fullscreen mode

Top comments (0)