web-dev-qa-db-ja.com

MAC以外のOSでfsevents警告をスローするnpmインストールを解決するにはどうすればよいですか?

npm installコマンドで次の警告がスローされています-

npm WARN optional SKIPPING OPTIONAL DEPENDENCY: [email protected] (node_modules\rea
ct-scripts\node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@
1.1.2: wanted {"os":"darwin","Arch":"any"} (current: {"os":"win32","Arch":"x64"}
)
npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@^1.0.0 (node_modules\ch
okidar\node_modules\fsevents):
npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@
1.1.2: wanted {"os":"darwin","Arch":"any"} (current: {"os":"win32","Arch":"x64"}
)

この警告は、明らかにJenkins Jobに失敗のマークを付けているため、同じものを削除しようとしています。

私はすでにこれを確認しました https://stackoverflow.com/a/42938398/3519 しかし、そこに記載されているものとは異なり、私はセットアップに/ node_modules/fserrorsがありません。また、package.jsonにはfserrorsが含まれていません。以下は私のpackage.jsonです-

{
  "name": "mvc-panel",
  "version": "0.1.0",
  "private": true,
  "dependencies": {
    "bootstrap": "^3.3.7",
    "jquery": "^3.2.1",
    "material-ui": "^0.18.3",
    "qs": "^6.4.0",
    "react": "^15.5.4",
    "react-alert": "^2.1.2",
    "react-bootstrap-table": "^3.4.1",
    "react-dom": "^15.5.4",
    "react-loader": "^2.4.2",
    "react-router-dom": "^4.1.1",
    "react-tap-event-plugin": "^2.0.1",
    "serve": "^6.0.0"
  },
  "devDependencies": {
    "datatables.net": "^1.10.15",
    "jquery": "^3.2.1",
    "react-scripts": "^1.0.7"
  },
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test --env=jsdom",
    "eject": "react-scripts eject"
  }
}

node_modules\react-scripts\package.jsonで、react-scriptsのpackage.json(私のpackage.jsonのdevDependenciesの下で定義されています)でfseventを見ることができます-

{
  "_args": [
    [
      {
        "raw": "react-scripts@^1.0.7",
        "scope": null,
        "escapedName": "react-scripts",
        "name": "react-scripts",
        "rawSpec": "^1.0.7",
        "spec": ">=1.0.7 <2.0.0",
        "type": "range"
      },
      "D:\\Sandeepan\\Payu MVC\\backend codebase\\MVC2.0\\panel\\mvc-panel"
    ]
  ],
  "_from": "react-scripts@>=1.0.7 <2.0.0",
  "_id": "[email protected]",
  "_inCache": true,
  "_location": "/react-scripts",
  "_nodeVersion": "8.5.0",
  "_npmOperationalInternal": {
    "Host": "s3://npm-registry-packages",
    "tmp": "tmp/react-scripts-1.0.14.tgz_1506471610836_0.5613740666303784"
  },
  "_npmUser": {
    "name": "timer",
    "email": "[email protected]"
  },
  "_npmVersion": "5.3.0",
  "_phantomChildren": {
    "asap": "2.0.6",
    "escape-string-regexp": "1.0.5",
    "graceful-fs": "4.1.11",
    "has-ansi": "2.0.0",
    "universalify": "0.1.1"
  },
  "_requested": {
    "raw": "react-scripts@^1.0.7",
    "scope": null,
    "escapedName": "react-scripts",
    "name": "react-scripts",
    "rawSpec": "^1.0.7",
    "spec": ">=1.0.7 <2.0.0",
    "type": "range"
  },
  "_requiredBy": [
    "#DEV:/"
  ],
  "_resolved": "https://registry.npmjs.org/react-scripts/-/react-scripts-1.0.14.tgz",
  "_shasum": "70fe76c9beb67b136b953e875bdfe4ad78d410d1",
  "_shrinkwrap": null,
  "_spec": "react-scripts@^1.0.7",
  "_where": "D:\\Sandeepan\\Payu MVC\\backend codebase\\MVC2.0\\panel\\mvc-panel",
  "bin": {
    "react-scripts": "./bin/react-scripts.js"
  },
  "bugs": {
    "url": "https://github.com/facebookincubator/create-react-app/issues"
  },
  "dependencies": {
    "autoprefixer": "7.1.2",
    "babel-core": "6.25.0",
    "babel-eslint": "7.2.3",
    "babel-jest": "20.0.3",
    "babel-loader": "7.1.1",
    "babel-preset-react-app": "^3.0.3",
    "babel-runtime": "6.26.0",
    "case-sensitive-paths-webpack-plugin": "2.1.1",
    "chalk": "1.1.3",
    "css-loader": "0.28.4",
    "dotenv": "4.0.0",
    "eslint": "4.4.1",
    "eslint-config-react-app": "^2.0.1",
    "eslint-loader": "1.9.0",
    "eslint-plugin-flowtype": "2.35.0",
    "eslint-plugin-import": "2.7.0",
    "eslint-plugin-jsx-a11y": "5.1.1",
    "eslint-plugin-react": "7.1.0",
    "extract-text-webpack-plugin": "3.0.0",
    "file-loader": "0.11.2",
    "fs-extra": "3.0.1",
    "fsevents": "1.1.2",
    "html-webpack-plugin": "2.29.0",
    "jest": "20.0.4",
    "object-assign": "4.1.1",
    "postcss-flexbugs-fixes": "3.2.0",
    "postcss-loader": "2.0.6",
    "promise": "8.0.1",
    "react-dev-utils": "^4.1.0",
    "style-loader": "0.18.2",
    "sw-precache-webpack-plugin": "0.11.4",
    "url-loader": "0.5.9",
    "webpack": "3.5.1",
    "webpack-dev-server": "2.8.2",
    "webpack-manifest-plugin": "1.2.1",
    "whatwg-fetch": "2.0.3"
  },
  "description": "Configuration and scripts for Create React App.",
  "devDependencies": {
    "react": "^15.5.4",
    "react-dom": "^15.5.4"
  },
  "directories": {},
  "dist": {
    "integrity": "sha512-+p0q2N2WW7L4WW6uObqN7fYwSQZ9fBI0StpMYl1Ukoz/lCbemf+yW6b8refyhTsGy62GAqxlpyEfVcTE3hJAxg==",
    "shasum": "70fe76c9beb67b136b953e875bdfe4ad78d410d1",
    "tarball": "https://registry.npmjs.org/react-scripts/-/react-scripts-1.0.14.tgz"
  },
  "engines": {
    "node": ">=6"
  },
  "files": [
    "bin",
    "config",
    "scripts",
    "template",
    "utils"
  ],
  "homepage": "https://github.com/facebookincubator/create-react-app#readme",
  "license": "MIT",
  "maintainers": [
    {
      "name": "timer",
      "email": "[email protected]"
    },
    {
      "name": "fb",
      "email": "[email protected]"
    },
    {
      "name": "gaearon",
      "email": "[email protected]"
    }
  ],
  "name": "react-scripts",
  "optionalDependencies": {
    "fsevents": "1.1.2"
  },
  "readme": "ERROR: No README data found!",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/facebookincubator/create-react-app.git"
  },
  "version": "1.0.14"
}

更新

Npm installコマンドを実行して、以前のコマンドの終了ステータスを取得しようとしました。警告にもかかわらず、成功を意味する0を示しました。だから、ジェンキンスの仕事はこれのために立ち往生しているようには見えません。ただし、この警告はOSとは関係がないため、この警告を取り除く方法を探しています。

44
Sandeepan Nath

fseventsは、Macと他のLinuxシステムで異なる方法で処理されます。 Linuxシステムはfseventsを無視しますが、macはそれをインストールします。上記のエラーメッセージにはfseventsがオプションであり、インストールプロセスでスキップされることが示されているため。

上記の警告を回避するために、Linuxシステムでnpm install --no-optionalコマンドを実行できます。

さらに詳しい情報

https://github.com/npm/npm/issues/14185

https://github.com/npm/npm/issues/5095

41
ashisrai_
npm i -f

このスレッド からコメントを再投稿したいと思います。ここでは、問題について読むことができます問題は解決しました

これはまさにAngularの問題です。現在のpackage.jsonは、optionalDependenciesではなくdevDependenciesとしてfseventを必要とします。これは、非OSXユーザーにとっては問題になる可能性があります。

時々

Package.json npmからそれを削除しても、別のモジュールがpeer depとして持っているため、まだ失敗します。

そう

npm-shrinkwrap.jsonがまだある場合は、それを削除するか、npm i -fを試してください

15
sr9yar

Ubuntuでも同じ問題が発生しました。

これで解決します。

npm install -g yarn
npm install yarn

yarn install
yarn upgrade

角度/ CLIを使用する場合は、これも作成してください

ng update
4

これを行う:

npm install --no-optional

詳細については、以下を参照してください。 https://github.com/npm/npm/issues/11632

3
Siddhartha

同じエラーが発生しました。私の場合、マップされたドライブを使用して、Linuxを実行している2台目のコンピューターのコードを編集していました。 gulp-watchがインストール前にオペレーティングシステムの互換性に依存する理由が正確にはわかりません(セキュリティの目的に関係していると思います)。基本的に、エラーはオペレーティングシステムとノードモジュールを呼び出しているオペレーティングシステムに対してチェックしています。私の場合、2つのオペレーティングシステムは同じではなかったため、エラーをスローしました。あなたのエラーの見た目は、私のものと同じです。

エラー

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

修正方法

Linuxコンピューターに直接ログインして実行しました

npm install --save-dev <module-name>

その後、コーディング環境に戻りましたが、その後はすべて順調でした。

お役に立てば幸いです!

0
ARLCode

ionic cordova installでこのエラーが発生した場合。 cmdでこのコードnpm install --no-optionalを使用するだけです。そして、このコードを実行しますnpm install -g ionic@latest cordova

0

はい、npm install --no-optionalコマンドを使用すると機能します
使用環境:

  • iTerm2
  • macos vm ubuntu16 LTSにログインします。
0
Gu Steven

私はこのエラー、Linuxシステム(Ubuntu)を受け取っていましたが、これを実行すると発生する可能性があります:

npmインストール

1)プロジェクトがローカルディスク/コンピューターにない場合は、コンピューターにコピーして再試行してください。そのため、フォルダへのアクセス許可を取得します(アクセス許可があることを確認してください)。

2)それでも警告またはエラーが表示される場合は、次を実行します。

npm監査修正

これにより、依存関係の脆弱性が解決され、実行が簡単なnpmコマンドとさらなるトラブルシューティングの推奨事項が提供されるため、脆弱性の修正に役立ちます。

それが役に立てば幸い!

0
Harish Kulkarni

MacOSを使用していますが、私も同じ問題を抱えていました。この問題は一種のバグです。コマンドを繰り返し実行することでこの問題を解決し、

Sudo npm cache clean --force 
Sudo npm uninstall 
Sudo npm install

一度は動作しませんでしたが、キャッシュを繰り返しクリーニングし、npmをアンインストールしてnpmを再インストールすると、エラーは消えました。 Angular 8を使用していますが、この問題は一般的です

0
Parthan_akon

私は同じ問題を見つけたので、上記のすべての解決策とgithubで試しました。 travic-CIまたはPipelinesを使用してPRをリモートリポジトリにプッシュすると、同じエラーが返される場合、一部はローカルリポジトリでのみ動作します。最後に、以下のnpmコマンドを使用して修正しました。

npm audi fix --force

0
eLi