web-dev-qa-db-ja.com

npmを使用してangular / cliをインストール中にエラーが発生しました

このコマンドを使用してangular cliをインストールしようとしたとき

npm install -g @angular/cli

私は下記のエラーになりました

npm WARNオプションの省略可能な依存関係:fsevents@^1.0.0(node_modules\@angular\cli\node_modules\chokidar\node_modules\fsevents):npm WARN notsupスキップオプションの依存関係:[email protected]:サポートされていないプラットフォーム":" darwin "、" Arch ":" any "}(current:{" os ":" win32 "、" Arch ":" x64 "})npmオプションのスキップオプションの依存関係:fsevents@^1.1.2(node_modules\@angular\cli\node_modules\watchpack\node_modules\chokidar\node_modules\fsevents):npm警告notsupスキップオプションの依存関係:[email protected]のサポートされていないプラットフォーム:{"os": "darwin"、 "Arch": " any "}(現在:{" os ":" win32 "、" Arch ":" x64 "})npmオプションのスキップオプションの依存関係:fsevents@^1.1.2(node_modules\@angular\cli\node_modules\webpack-dev -server\node_modules\chokidar\node_modules\fsevents):npm WARN notsup SKIPPING OPTIONAL DEPENDENCY:サポートされていない[email protected]のプラットフォーム:{{os ":" darwin "、" Arch ":" any "}(current:{ "os": "win32"、 "Arch": "x64"})npm WARN [email protected]のピアが必要ですjv@^6.0.0がインストールされていません。 npmオプションのスキップオプションの依存関係:[email protected](node_modules\@angular\cli\node_modules\node-sass):npm WARNオプションのスキップオプションの依存関係:[email protected] postinstall: `node scripts/build .js npm警告オプションのスキップオプションの依存関係:終了ステータス1

問題は何ですか?

私のノードバージョンは6.9.2であり、npmバージョンは3.10.9です

8
prady

プロジェクトフォルダーから次のコマンドを使用してみてください。

npm audit fix

それでも修正されている脆弱性がわずかしかない場合は、以下のコマンドを使用します

npm audit fix --force

マシンで使用したコマンドのスクリーンショット

10

この警告はすべてを伝えました:

Unsupported platform for [email protected]: **wanted** {"os":"darwin","Arch":"any"} (**current**: {"os":"win32","Arch":"x64"})

UNIXベースのシステムのみがfseventsを使用し、Windowsを使用しています!

5
Mirko Jelic

まず、投稿したものはすべて警告であり、エラーではありません。

これは、npmが依存関係をスキップしたことを意味します。

これは、npmバージョンを最新に更新すると解決します。次のコマンドを使用します。

npm i -g npm@latest  

//アクセス許可エラーが発生した場合は、Sudoを使用します。

もう一度インストールしてみてください。

お役に立てれば。

0
Harshal
$ npm install -g @angular/cli
C:\Users\Asus\Desktop\ng -> C:\Users\Asus\Desktop\node_modules\@angular\cli\bin\ng
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules\@angular\cli\node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for [email protected]: wanted {"os":"darwin","Arch":"any"} (current: {"os":"win32","Arch":"x64"})

+ @angular/[email protected]
added 295 packages from 179 contributors in 120.715s
0
james