jspm可以';t从npm安装

jspm可以';t从npm安装,npm,http-proxy,jspm,Npm,Http Proxy,Jspm,新安装npm(5.4.2)和jspm(0.16.53) 运行npm安装可以正常工作 运行“jspm安装jquery”时失败,结果如下: 但是,当调用github时,jspm确实起作用 “jspm安装github:github/fetch” 我支持一个公司代理,并已将我的系统环境变量HTTP\u proxy和HTTPS\u proxy设置为正确的地址 .jspm配置 { "defaultTranspiler": "babel", "defaultRegistry": "jspm", "st

新安装npm(5.4.2)和jspm(0.16.53)

运行npm安装可以正常工作

运行“jspm安装jquery”时失败,结果如下:

但是,当调用github时,jspm确实起作用

“jspm安装github:github/fetch”

我支持一个公司代理,并已将我的系统环境变量HTTP\u proxy和HTTPS\u proxy设置为正确的地址

.jspm配置

{
 "defaultTranspiler": "babel",
 "defaultRegistry": "jspm",
 "strictSSL": false,
 "registries": {
   "github": {
   "handler": "jspm-github",
   "remote": "https://github.jspm.io"
 },
 "npm": {
  "handler": "jspm-npm",
  "remote": "https://npm.jspm.io"
},
"jspm": {
   "timeouts": {
    "lookup": 60,
    "build": 120
   },
    "handler": "jspm-registry",
    "remote": "https://registry.jspm.io"
  }
 }  
}

只是想知道,为什么要使用JSPM?这是工作要求还是什么?是的,工作要求,这是我用过的一个应用程序的一部分,太糟糕了。我想知道,从长远来看,把这件事转移到NPM会不会节省你的时间?