0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Windows 版 Node.js 手動セットアップ手順

Posted at

管理者権限が無い Windows 10 (64-bit) で Node.js を使うための手順です。

  1. Web ブラウザーを開き, Download | Node.js にアクセスする。

  2. Windows Binary (.zip)64-bit をクリックし, アーカイブをダウンロードする。

  3. ダウンロードしたアーカイブを展開し, C ドライブの直下に移動する。

    • 今回は C:\node-v14.16.1-win-x64 というフォルダーに, node.exenpm.cmd が存在するものとする。
  4. Windows 10 環境変数設定手順 を参考に,
    環境変数 PathC:\node-v14.16.1-win-x64 を追加する。

  5. スタートメニューを右クリックし, コマンド プロンプト をクリックする。

    • コマンドプロンプトが開く。
  6. node --versionnpm --version と実行し, バージョン情報が表示されることを確認する。

    > node --version
    v14.16.1
    
    > npm --version
    6.14.12
    

どっとはらい。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?