Can not find module 'reflect-metadata'

0

When I install angle 2 using:

ng new angular-teste 

I get the error:

  

Can not find module 'reflect-metadata'

What can it be?

    
asked by anonymous 03.10.2016 / 15:58

1 answer

1

NPM must be updated to v3. Earlier versions will cause this error.

To update your version:

npm install npm -g

Reference .

    
03.10.2016 / 16:04