无法在 Outlook Web 加载项项目中安装 Fluent UI React

Can't install fluent UI react in an Outlook Web add-in project

我正在尝试在 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

Release notes 中说我应该使用 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/

提前致谢。

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

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

npm i @fluentui/react> 成功了。

我觉得有趣的是,只有部分包下载失败,这让我认为代理配置没问题,所以不用担心。

我希望这对以后的人有所帮助。