Installation of dependencies in npm start but not finish

1

I am taking a course and following a book on NodeJs . In the book I'm asked to install the Express and Babel modules, already in the course they ask to install dependencies of an application that they make available.

My problem is this:

  

In both cases when I go to make the installations they start but do not finish.

Follow the attachments of the prints and link to the project's book directory.

Book Prints:

PrintsCourse:

    
asked by anonymous 01.12.2017 / 22:56

1 answer

1

The module babel has been replaced by babel-cli , so you should install babel using this command:

npm install --save babel-cli or npm i -S babel-cli

    
17.12.2017 / 16:17