LoginSignup
8
8

More than 5 years have passed since last update.

Node.jsのインストール(Ubuntu)

Posted at

Node.jsをインストールしたときのメモ

OS:Ubuntu12.10
virtualBox上のゲストOSにインストール

最新版のダウンロード

wget http://nodejs.org/dist/v0.10.5/node-v0.10.5.tar.gz

ディレクトリの移動とコンパイルとインストール

解凍したディレクトリに移動して以下を実行

./configure
make
sudo make install

npmのインストール ※Node.jsのパッケージ管理ツール

curl https://npmjs.org/install.sh | sudo sh

npmをインストールする場合には-gオプションをつける
    wsのインストール
    sudo npm install -g ws

websocket.ioのインストール
    sudo npm install -g websocket.io
8
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8