2

jspm をプライベート npm レジストリ (パブリック レジストリをミラー化) で動作させようとしています。

エンドポイント構成ツールを使用して、.npmrc から jspm を構成しましたが、正常に動作しているように見えます

GAVINJ:jspm-test gavinj$ jspm endpoint config npm
npmrc found, would you like to use these settings? [yes]:
npm registry [http://registry.npm.ourcompanyname.net/]:
Would you like to test these credentials? [yes]:
ok   npm authentication is working successfully.
ok   Endpoint npm configured successfully.

パッケージ 'michelangelo' (パブリック npm レジストリにはありません) のインストールは問題なく動作します

GAVINJ:jspm-test gavinj$ npm install michelangelo
highstock-release@2.0.4 node_modules/highstock-release
jquery@2.1.3 node_modules/jquery
d3@3.5.5 node_modules/d3
lodash@3.3.1 node_modules/lodash
michelangelo@2.0.1641 node_modules/michelangelo

jspm 経由で同じ npm パッケージをインストールしようとしても機能しません。

GAVINJ:jspm-test gavinj$ jspm install michelangelo=npm:michelangelo
     Looking up npm:michelangelo

err  Repo michelangelo not found!

warn Installation changes not saved.

jspm 経由で lodash をインストールしようとすると、完全に機能します

GAVINJ:jspm-test gavinj$ jspm install lodash=npm:lodash
     Looking up npm:lodash
     Updating registry cache...
     Looking up github:jspm/nodelibs-process
     Looking up npm:process
ok   Up to date - lodash as npm:lodash@^3.3.1 (3.3.1)
ok   Install tree has no forks.

ok   Install complete.

私のjspm設定ファイルは次のようになります

{
  "registry": "jspm",
  "endpoints": {
    "github": {
      "timeouts": {
        "lookups": 60
      },
      "handler": "jspm-github",
      "remote": "https://github.jspm.io"
    },
    "npm": {
      "timeouts": {
        "lookups": 60
      },
      "registry": "http://registry.npm.ourcompanyname.net/",
      "remote": "https://npm.jspm.io",
      "auth": "PRIVATE_HERE_BUT_SAME_AS_NPMRC_FILE",
      "handler": "jspm-npm"
    },
    "jspm": {
      "timeouts": {
        "lookups": 60
      },
      "handler": "jspm-registry",
      "remote": "https://registry.jspm.io"
    }
  }
}

jspm 経由で npm パッケージをインストールできない理由は何ですか? または、問題を追跡する方法について何かアドバイスはありますか?

4

1 に答える 1

2

レジストリの URL の末尾に/.

末尾のスラッシュを削除すると、それは魅力のように機能しました。

于 2015-03-03T02:24:19.060 に答える