Angular cli for existing github project

Since the ng init command is removed from the CLI commands what you can do is specify the directory. You might have to do some overwrites and modifications by yourself for some of the existing files.

You can pull it off with

ng new [app_name] --directory=directory_path

Example assume that your terminal is opened in angular-basic directory and you have to add the cli to angular-basic project, ng new angular-basic --directory . would create the workspace in current directory which is angular-basic.

UPDATE:

Reason that it has been removed is because of the message of having two ways to create a project and because people were using it to upgrade (poorly) - From cli team @Brocco's tweet.


This is easy enough.

Run the following command from the existing directory which will serve as your application root.

$ ng new current-directory --directory=./ --skip-install

This uses three arguments as:

  1. current-directory whatever your project name will be or current location where terminal is open.

  2. --directory=./ this what does the magic, it instructs angular-cli to use existing folder as project root.

  3. --skip-install this one is totally optional, only prevents installation of all npm dependencies upfront.

Just in case you see an error like The Schematic workflow failed. See above., clear the contents of your directory, specially README.md, .gitignore etc. and let angular-cli create them for you.

Tags:

Angular Cli