0

我正在尝试在 Outlook Web 加载项项目上安装 fluent UI,但出现不同的错误:

@fluentui/react - npm说我应该使用npm i @fluentui/react,但我得到:

http fetch GET 200 http://registry.npmjs.org/@fluentui%2ffont-icons-mdl2 337ms
silly fetchPackageMetaData error for @fluentui/font-icons-mdl2@^8.0.4 UNKNOWN: unknown error

发行说明中说我应该使用npm install @fluentui/react@^8.0.0并且我得到

http fetch GET 200 http://registry.npmjs.org/@fluentui%2freact 394ms
silly fetchPackageMetaData error for @fluentui/react@8.0.0 No matching version found for @fluentui/react@8.0.0.

我以前没有使用 node 或 react 的经验,所以即使是基本的东西也可以随意指出。

我已经搜索了安装问题,但我能找到的所有内容都与软件包的最新版本无关。我也试过npm install --save @fluentui/react得到第一个提到的错误。

编辑:

我在公司代理后面,这是我的配置:

[System variable]
GLOBAL_AGENT_HTTP_PROXY = http://username:password@corporate.proxy.com:port

[.npmrc]
proxy=http://username:password@corporate.proxy.com:port
https-proxy=http://username:password@corporate.proxy.com:port/
http-proxy= http://username:password@corporate.proxy.com:port
strict-ssl=false
registry=http://registry.npmjs.org/

提前致谢。

4

1 回答 1

0

当我编辑问题以提供代理配置时,我注意到 https-proxy 中有一个可能不需要的斜杠,我将其删除并尝试了 npm install 命令:

npm install @fluentui/react@^8.0.0> “没有匹配的版本...找到”

npm i @fluentui/react> 工作。

我发现有趣的是,只有部分软件包下载失败,这让我觉得代理配置没问题,不用担心。

我希望这对将来的某人有所帮助。

于 2021-04-20T09:03:53.653 回答