用ionic创建angular项目报错记录

Downloading and extracting tabs starter Error: unable to get local issuer certificate

at TLSSocket.onConnectSecure (_tls_wrap.js:1473:34)
at TLSSocket.emit (events.js:311:20)
at TLSSocket._finishInit (_tls_wrap.js:916:8)
at TLSWrap.ssl.onhandshakedone (_tls_wrap.js:686:12)

解决方案:
1.使用命令 ionic start myApp blank --verbose
2.执行命令后报错
Preparing directory ./myApp in 1.70ms
ionic:commands:start Tar extraction created for
+0ms
superagent GET https://d2ql0qc7j8u4b2.cloudfront.net/angular-official-tabs.tar.gz +0ms

因此你需要复制https://d2ql0qc7j8u4b2.cloudfront.net/angular-official-tabs.tar.gz链接下载,下载下来的项目就是已创建好的项目,可以不用ssl证书。

3.进入项目 执行npm install,加载依赖包
4.ionic serve 启动项目

你可能感兴趣的:(node.js,es6,angular)