2016-05-31 49 views
1

我想用「分型」安裝谷歌Auth2分型:分型:「分型搜索」找到一個包,而是「分型安裝」失敗

> typings search gapi.auth2 

回報

NAME  SOURCE HOMEPAGE           DESCRIPTION VERSIONS UPDATED 
gapi.auth2 dt  https://developers.google.com/identity/sign-in/web/    1  2016-03-19T05:16:41.000Z 

但然後

> typings install gapi.auth2 

失敗:

typings ERR! message Unable to find "gapi.auth2" ("npm") in the registry. Did you want to try searching another source? Also, if you want contribute these typings, please help us: https://github.com/typings/registry 
typings ERR! caused by https://api.typings.org/entries/npm/gapi.auth2/versions/latest responded with 404, expected it to equal 200 

我不明白爲什麼發生這種情況,我的意思是,它確實找到包,不是嗎?我錯過了什麼?

回答

1

我找到了解決辦法:

typings install dt~gapi.auth2 --global 

所以關鍵是前綴dt~指示包源(絕對鍵入,在這種情況下) - 和可以在search輸出被視爲良好。

0

要安裝所需的程序包使用--ambient --save的分型像

typings install packageName --ambient --save 

--save保存它裏面typings.json爲今後安裝方便,更多地瞭解環境是指--ambient explanation

要安裝gapi.auth2使用

typings install gapi.auth2 --ambient --save