Reputation: 2177
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
I don't really understand why.
This is the output of ionic info
terminal cmd:
Upvotes: 0
Views: 440
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