對于我們而言,nodejs可以被理解為:一個運行于windows之上的操作系統。它的操作是基于命令行的。
你可以搜索nodejs,也可以直接打開以下鏈接進行下載:
> [https://nodejs.org/zh-cn/](https://nodejs.org/zh-cn/)
建議下載推薦版本。

下載后進行安裝,步驟略。
在安裝一些陌生軟件時,應該按默認值進行安裝,一路next,一直到finish
安裝完成后,我們使用 win+r 組合鍵打開 運行 對話框,然后在運行對話框中輸入 cmd 后按回車,打開命令行窗口。
> 上面是打開命令行窗口的方法與步驟,我們嘗試把它融化在血液里。
然后輸入 npm 按回車,將類似的得到以下的提示,證明安裝成功.
```
Usage: npm <command>
where <command> is one of:
access, adduser, bin, bugs, c, cache, completion, config,
ddp, dedupe, deprecate, dist-tag, docs, edit, explore, get,
help, help-search, i, init, install, install-test, it, link,
list, ln, login, logout, ls, outdated, owner, pack, ping,
prefix, prune, publish, rb, rebuild, repo, restart, root,
run, run-script, s, se, search, set, shrinkwrap, star,
stars, start, stop, t, team, test, tst, un, uninstall,
unpublish, unstar, up, update, v, version, view, whoami
npm <cmd> -h quick help on <cmd>
npm -l display full usage info
npm help <term> search for help on <term>
npm help npm involved overview`
```