french_dev
french_dev

Reputation: 2177

adding cordova plugin for ionic 2 return ETIMEDOUT error

Using Ionic 2 for a project, I would like to add the ionic plugin add cordova-plugin-nativestorage

So in my terminal I launch the command:

ionic plugin add cordova-plugin-nativestorage

But I have this error

error: connect ETIMEDOUT 50.17.177.14:80

enter image description here

I don't really understand why.

This is the output of ionic info terminal cmd:

enter image description here

Upvotes: 0

Views: 440

Answers (1)

Gandhi
Gandhi

Reputation: 11935

As per the error, its a connectivity issue with your network. Ensure that your network proxy is not preventing you from downloading the plugin.

I m able to download the plugin using cordova CLI invoking the following command:

cordova plugin add cordova-plugin-nativestorage

Upvotes: 2

Related Questions