When I try to create a new Angular Cli project:
receive this message (in Run window) after a few seconds after executing <
I have this issue, But I got a solution which is works for me is:
New project names must start with a letter, and must contain only alphanumeric characters or dashes. When adding a dash the segment after the dash must also start with a letter
.
Invalid- new_something
Valid- new-something
it's a known cli 1.7.x issue - https://github.com/angular/angular-cli/issues/9655; unfortunately we have been unable to fix it on our end so far... We are working with Angular team on this, please follow WEB-31291 for updates.
As a workaround, you can try creating new angular app in terminal using ng new <project_name>
and then opening the generated project folder in WebStorm
Do not include project name special characters. for example this is wrong: www_testProject.
This is correct: wwwTestProject
According to my last test, there is no problem. I upgraded my tools (Angular CLI v7.1.4
and WebStorm v2018.3.2
):