err Repo github:angular not found! [jspm install]

151 Views Asked by At

I am getting this error while doing jspm install,

err Repo github:angular not found!

executing jsp install github:angular also doesnt work.

jspm_config.json location is https://plnkr.co/edit/2svUSwjVgCxyJ4iJHj1T?p=info

Can someone please help, thanks in advance

1

There are 1 best solutions below

1
ckgupta On BEST ANSWER

Finally, I was able to resolve the issue,

the local ~/.jspm/config file on mac has to be configured with correct url for github, I had initially configured to use https://github.com as jspm registry for github which was causing the issue,

I replaced that with https://github.jspm.io and removed any auth attribute. It asked me to generate the auth token and all went smooth.

"github": {
      "remote": "https://github.jspm.io",
      "auth": "XXXXXXXXXX",
      "maxRepoSize": 0,
      "handler": "jspm-github"
    }