windowsインストールnodejs

4276 ワード

nodejsダウンロード住所:
二つのバージョンがあります.一つはwin 7をサポートする住所です.一つはwin 8をサポートする住所です. 
    :https://nodejs.org/en/download/

win7      :https://nodejs.org/dist/v12.16.2/node-v12.16.2-x64.msi

win7      :https://nodejs.org/dist/v12.16.2/node-v12.16.2-win-x64.zip

win8+    :https://nodejs.org/dist/v14.0.0/node-v14.0.0-x64.msi

win8+    :https://nodejs.org/dist/v14.0.0/node-v14.0.0-win-x64.zip
msiバージョンは直接に次のステップをクリックすればいいです.何も言わずにexeと同じ操作です.
ここで重点的にWindows Binary版のインストールを解凍します.
ファイルをDディスクに展開します.(DディスクまたはE/F/に配置することをお勧めします.)
環境変数の設定:環境変数PATHに追加
D:
ode-v12.16.2-win-x64
そしてcmdを実行します
テストインストールの結果、下の代表が成功しました.
C:\Users\julong>node --version
v12.16.2
npmをテストします
C:\Users\julong>npm -v
6.14.4
 
キャッシュパスとプロファイルの設定
D:
ode-v12.16.2-win-x64>npm config set cache "D:
ode-v12.16.2-win-x64
ode_cache" D:
ode-v12.16.2-win-x64>npm config set prefix "D:
ode-v12.16.2-win-x64
ode_global" D:
ode-v12.16.2-win-x64>
 
npm倉庫の住所を設定して宝を洗う倉庫の住所です.
npm config set registry http://registry.npm.taobao.org/

      :
C:\Users\julong>npm get registry
http://registry.npm.taobao.org/
もしあなたがタオバオを使いたくないなら、倉庫の住所を変えなくてもいいです.もちろん、タオバオの住所をもう一度カバーしてもいいです.
npm config set registry https://registry.npmjs.org/
海外の住所は遅いです.国内のバーでインストールしたらcnpmで命令できます.
   :npm install -g cnpm --registry=https://registry.npm.taobao.org

C:\Users\julong>npm install -g cnpm --registry=https://registry.npm.taobao.org
D:
ode-v12.16.2-win-x64\cnpm -> D:
ode-v12.16.2-win-x64
ode_modules\cnpm\bin\cnpm + [email protected] added 685 packages from 953 contributors in 127.302s
 
webpackをインストールする  javascript包装ツール
#      
npm install vue

npm install webpack -g
vue-cliをインストールします
      npm view @vue/cli versions --json

Vue CLI       vue-cli     @vue/cli。                vue-cli (1.x   2.x),       npm uninstall vue-cli -g   yarn global remove vue-cli    。

Node     

Vue CLI    Node.js 8.9       (   8.11.0+)。      nvm   nvm-windows             Node   。

npm install -g @vue/cli
# OR
yarn global add @vue/cli
D:\>vue create vue-test


Vue CLI v4.1.0
┌───────────────────────────────────────
──┐
│                                         │
│   New version available 4.1.0 → 4.3.1   │
│    Run npm i -g @vue/cli to update!     │
│                                         │
└───────────────────────────────────────
──┘

? Please pick a preset: default (babel, eslint)


Vue CLI v4.1.0
✨  Creating project in D:\vue-test.
�  Initializing git repository...
⚙  Installing CLI plugins. This might take a while...


> [email protected] install D:\vue-test
ode_modules\yorkie > node bin/install.js setting up Git hooks done > [email protected] postinstall D:\vue-test
ode_modules\core-js > node -e "try{require('./postinstall')}catch(e){}" > [email protected] postinstall D:\vue-test
ode_modules\ejs > node ./postinstall.js added 1196 packages from 852 contributors and audited 25249 packages in 241.001s 40 packages are looking for funding run `npm fund` for details found 0 vulnerabilities � Invoking generators... � Installing additional dependencies... added 54 packages from 39 contributors and audited 25532 packages in 76.579s 42 packages are looking for funding run `npm fund` for details found 0 vulnerabilities ⚓ Running completion hooks... � Generating README.md... � Successfully created project vue-test. � Get started with the following commands: $ cd vue-test $ npm run serve D:\>
起動
D:\>cd vue-test

D:\vue-test>npm run serve

> [email protected] serve D:\vue-test
> vue-cli-service serve

 INFO  Starting development server...
98% after emitting CopyPlugin

 DONE  Compiled successfully in 5354ms                                  13:00:36



  App running at:
  - Local:   http://localhost:8080/
  - Network: http://192.168.10.18:8080/

  Note that the development build is not optimized.
  To create a production build, run npm run build.

        (Y/N)? y

D:\vue-test>