Skip to content

Instantly share code, notes, and snippets.

@hiz8
Created January 21, 2015 06:03
Show Gist options
  • Select an option

  • Save hiz8/c1e3438a2033df17449c to your computer and use it in GitHub Desktop.

Select an option

Save hiz8/c1e3438a2033df17449c to your computer and use it in GitHub Desktop.
WindowsへNodist経由でNode.jsをインストールする

WindowsへNodist経由でNode.jsをインストールする

Nodistを入手

Nodist

  • zipをダウンロード
  • 適当なフォルダへ入れる(例:C:\Users\ユーザー名\nodist)
  • 環境変数を設定
    • PATH=...\nodist\bin (nodist.cmd があるパス)
    • NODIST_PREFIX=...\nodist (package.json があるパス)
  • コマンドnodist -vで確認

node.jsをインストール

  • nodist updateでnodistを最新に。
  • nodist stableで最新安定版のnode.jsをインストール
  • node -vで確認

お疲れ様でした!

その他コマンド

  • nodist - インストールされているnode.jsを一覧
  • nodist 0.10.35 - 使用するnodeのバージョンを0.10.35へ
  • nodist + v0.10.35 - 0.10.35をインストール
  • nodist - 0.10.35 - 0.10.35をアインストール
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment