Skip to content

Command to generate new new app in current app

Published: at 05:52 AM (1 min read)

Command to generate new new app in current app

ng generate application app-name

To create multiple apps in one with clean structure

1.First new app with below command line

ng new app-name --create-application=false

2.Next create one more app in above app with this command

ng generate application app-name