gem으로 Node.js를 성공적으로 설치한 후 Mac에서 Node.js를 실행하는 방법은 무엇입니까?

gem으로 Node.js를 성공적으로 설치한 후 Mac에서 Node.js를 실행하는 방법은 무엇입니까?

Mac OSX Yosemite에서 노드를 성공적으로 설치했습니다.

# sudo gem install node
Fetching: eventmachine-1.0.7.gem (100%)
Building native extensions.  This could take a while...
Successfully installed eventmachine-1.0.7
Fetching: node-0.0.2.gem (100%)
Successfully installed node-0.0.2
Parsing documentation for eventmachine-1.0.7
unable to convert "\xCA" from ASCII-8BIT to UTF-8 for lib/fastfilereaderext.bundle, skipping
unable to convert "\xCA" from ASCII-8BIT to UTF-8 for lib/rubyeventmachine.bundle, skipping
Installing ri documentation for eventmachine-1.0.7
Parsing documentation for node-0.0.2
Installing ri documentation for node-0.0.2
2 gems installed

그리고 설치된 gem 목록에서 이를 볼 수 있습니다:

# gem list --local

*** LOCAL GEMS ***

activesupport (3.2.17)
bigdecimal (1.2.0)
CFPropertyList (2.2.8)
claide (0.7.0, 0.5.0)
cocoapods (0.35.0, 0.32.1)
cocoapods-core (0.35.0, 0.32.1)
cocoapods-downloader (0.8.1, 0.5.0)
cocoapods-plugins (0.3.2)
cocoapods-trunk (0.4.1)
cocoapods-try (0.4.3, 0.2.0)
colored (1.2)
escape (0.0.4)
eventmachine (1.0.7)
fuzzy_match (2.0.4)
i18n (0.7.0, 0.6.9)
io-console (0.4.2)
json (1.7.7)
json_pure (1.8.1)
libxml-ruby (2.6.0)
minitest (5.5.1, 4.3.2)
molinillo (0.1.2)
multi_json (1.9.2)
nap (0.8.0, 0.7.0)
netrc (0.7.8)
node (0.0.2)
nokogiri (1.5.6)
open4 (1.3.3)
psych (2.0.0)
rake (0.9.6)
rdoc (4.0.0)
sqlite3 (1.3.7)
test-unit (2.0.0.0)
thread_safe (0.3.4)
tzinfo (1.2.2)
xcodeproj (0.20.2, 0.16.1)

하지만 사용하려고 하면 (동일app.js파일은 Windows 7에서 잘 실행됩니다) - Node.js 인터프리터를 찾을 수 없습니다:

# node app.js
-bash: node: command not found
# sudo node app.js
sudo: node: command not found

또한 없습니다마디아래 파일/usr/로컬/빈.

설치된 Node.js를 사용하려면 어떻게 시작해야 하나요?

여기서는 조금 부족한 느낌이 듭니다.

답변1

이 보석은 node.js 프로젝트에 대한 모든 과장된 농담입니다.

이는 eventmachine gem만 포함하고 여기에 새 별칭을 추가합니다.

https://github.com/rafaelfranca/node

달리다

sudo apt-get update

sudo apt-get install nodejs

또는

brew update

brew install node

관련 정보