我一直在尝试遵循“Ionic入门”步骤,似乎无法通过第2步“启动项目”.当我尝试创建Ionic项目时,我收到以下错误. C:\Users\peterstbionic start myApp tabsCreating Ionic app in folder C:\Users\peterstb\myApp
C:\Users\peterstb>ionic start myApp tabs Creating Ionic app in folder C:\Users\peterstb\myApp based on tabs project Downloading: https://github.com/driftyco/ionic-app-base/archive/master.zip Error fetching: https://github.com/driftyco/ionic-app-base/archive/master.zip { [Error: connect ETIMEDOUT] code: 'ETIMEDOUT', errno: 'ETIMEDOUT', syscall: 'conn ect' } Error: Unable to initalize app: { [Error: connect ETIMEDOUT] code: 'ETIMEDOUT', errno: 'ETIMEDOUT', syscall: 'connect' }
我确实有一个代理,我必须经历,但我必须解决这个问题,以便首先安装cordova和离子组件.我见过的许多线程都指向了一个代理问题,这对我来说很有意义,但我似乎无法找到解决“额外”代理配置要求的任何内容,超出了为完成组件安装任务而设置的内容. .
Ionic不使用npm代理设置.所以你必须分别为离子设置PROXY.您可以通过手动设置PROXY环境变量或通过命令提示符设置 SET(仅限当前会话)或使用 SETX命令全局设置它来实现.set PROXY=http://YourProxy:8080/
要么
setx PROXY http://YourProxy:8080/
如果您的代理需要用户名和密码,您可以将其设置为:
set PROXY=http://YourUserName:YourPassword@YourProxy:8080/