Could not find node.js. This will result in editors missing key features.
이벤트 1 : Eclipse를 사용하면 Missing node.js라는 대화 상자가 나왔습니다.
원인 : Node.js가 설치되지 않았기 때문에
최근에는 Eclipse를 사용하기 위해 Node.js가 필요한가 ...
오류 메시지Could not find node.js. This will result in editors missing key features. Please make sure node.js is installed and that your PATH environment variable contains the location to the 'node' executable.
(ざっくり訳)
Node.jsが見つかりませんでした。これにより、エディタに主要な機能がなくなります。Node.jsがインストールされPATHにが通っていることを確認してください。
대응 1 : 보지 못한 것으로 한다
Could not find node.js. This will result in editors missing key features. Please make sure node.js is installed and that your PATH environment variable contains the location to the 'node' executable.
(ざっくり訳)
Node.jsが見つかりませんでした。これにより、エディタに主要な機能がなくなります。Node.jsがインストールされPATHにが通っていることを確認してください。
에디터의 무언가를 사용할 수 없게 된 것 같지만, 특히 곤란하지 않고 Node.js를 사용하는 개발이 아니고 번거롭고···곤란했을 때에 인스톨 한다
대응 2 : Node.js 설치
NodeSource의 GitHub Readme에 쓰여진 V10-13 버전 중 하나를 설치합니다.
# リポジトリを追加する
$ curl -sL https://rpm.nodesource.com/setup_14.x | sudo bash -
...省略...
## Run `sudo yum install -y nodejs` to install Node.js 14.x and npm.
## You may also need development tools to build native addons:
sudo yum install gcc-c++ make
## To install the Yarn package manager, run:
curl -sL https://dl.yarnpkg.com/rpm/yarn.repo | sudo tee /etc/yum.repos.d/yarn.repo
sudo yum install yarn
# コマンドの指示に従ってyumでインストールする
$ sudo yum install -y nodejs
...省略...
Installed:
nodejs.x86_64 2:14.7.0-1nodesource
Complete!
# ちゃんとPATHも通ってめでたしめでたし
$ node -v
v14.7.0
이벤트 2 : Node.js v14.7.0 is not supported.
원인 : 설치한 Node.js의 버전이 지원 대상이 아니기 때문에
대응 : 보지 않은 것으로 한다
번거롭기 때문에 그 중 대응하지만 지금은 보지 않았다고 한다
Reference
이 문제에 관하여(Could not find node.js. This will result in editors missing key features.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/ponsuke0531/items/78382ff99b1faa02cfae
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
Reference
이 문제에 관하여(Could not find node.js. This will result in editors missing key features.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/ponsuke0531/items/78382ff99b1faa02cfae텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)