0
When I use the command install -g @ angular/cli Nodejs starts loading all Angular dependencies, but when it starts downloading the file [email protected] It stands still and does not load anymore and also does not generate errors. I tried to install the chokidar individually and saw that at the address he tries to get the file the same does not meet with content only with this {}.
To check what I say just try on Nodejs the command install -g @chokidar and you’ll see what I say. Now the question is: how do I install Angular and it has this problem?
Are you on Windows? Tried running
cmdwith administrative privileges? You can try clearing the npm cache by runningnpm cache clean– vinibrsl
@angular/clidoes not depend on thechokidar, see Dependency status for angular - @angular/cli, you can also see on Github the file package json. the list of dependencies does not includechokidar.– NoobSaibot