Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jspm saying "github rate limit reached" - how to fix?

Tags:

github

jspm

When I run jspm install to install JS dependencies in my Aurelia project, jspm says Github rate limit reached

How to fix?

like image 889
nitech Avatar asked Jun 23 '15 06:06

nitech


1 Answers

The rate limit can be lifted by configuring jspm with your Github credentials. To do this do the following:

  1. Go to github.com, login and click settings
  2. Click Personal access tokens and then Generate new token
  3. Copy the token and start command line inside the project folder
  4. Type jspm registry config github

During the config process, you will be asked to enter the token. Do so, and you're good to go.

Configuring jspm to use a github token

like image 150
nitech Avatar answered Oct 22 '22 04:10

nitech