I'm new to Ionic. I'm facing proxy issues while getting started with Ionic 3.
After installing Ionic & cordova via npm tried to create a new project with the below command as suggested by ionic help
npm install -g @ionic/cli-plugin-proxy
followed by
ionic start helloWorld blank --type ionic-angular
npm config and git config are already set and working since i work with angular behind proxy able to install any libraries and push to github without any issues
- npm config set proxy http://userid:password@proxy.server.com:port
- npm config set https-proxy http://userid:password@proxy.server.com:port
- npm config set http-proxy http://userid:password@proxy.server.com:port
- git config --global http.proxy http://proxyuser:proxypwd@proxy.server.com:8080
Having environment variables HTTP_PROX,PROXY and IONIC_HTTP_PROXY as well.
Tried uninstalling ionic and reinstall, set proxies again but nothing helps. Couldn't find any help.Do i need to set any other proxy to work with ionic 3 ? Kindly guide me in resolving this.
versions
- Node : 7.8.0
- npm : 4.0.3
- ionic : 3.1.2
- cordova : 7.0.1