--- lang: ja-jp breaks: true --- # nodist を使用して Node.js のインストールを行う Windows Server 2019 2021-04-08 > Electronでクロスプラットフォームのデスクトップアプリを作る > https://www.pc-koubou.jp/magazine/23739 >Quick Start Guide >https://www.electronjs.org/docs/tutorial/quick-start ### インストールすることが可能なnode.jsのバージョンの一覧を表示 ```= > nodist dist 0.1.14 0.1.15 0.1.16 0.1.17 0.1.18 0.1.19 0.1.20 ~~途中省略~~ 14.15.5 14.16.0 14.16.1 15.0.0 15.0.1 15.1.0 15.2.0 15.2.1 15.3.0 15.4.0 15.5.0 15.5.1 15.6.0 15.7.0 15.8.0 15.9.0 15.10.0 15.11.0 15.12.0 15.13.0 15.14.0 ``` ### node.jsのインストール > Electronを使用する前に、Node.jsをインストールする必要があります。最新版または利用可能なバージョンのいずれかをインストールすることをお勧めします.LTSCurrent >https://www.electronjs.org/docs/tutorial/quick-start >https://nodejs.org/ja/ >![](https://i.imgur.com/EZJ2qBb.png) 推奨版が、14.16.1とのことなのでこれをインストールする。 ``` > nodist 14.16.1 14.16.1 [===============] 55014/55014 KiB 100% 0.0s Installation successful. ``` インストール後の確認 ``` > node -v v14.16.1 ``` ###### tags: `Node.js` `nodist` `Windows Server 2019`