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 5 years have passed since last update.

(Windows)Vue-CLI3をインストール

Last updated at Posted at 2019-08-10

#vue-cli3をglobalにインストール

##前提条件
nodejsとnpmがインストールされていること。

(参考)Windows10/node.jsをインストール
https://qiita.com/Dasoi5/items/5e8cb7562c8c72a8e6c0

##vue-cliのインストール
ネットの情報に倣い、-gオプションを付けてglobalにインストールする。
※cli3をインストールする場合、@vueとする点に注意。
`$ npm install -g @vue/cli

  • @vue/cli@3.10.0
    added 848 packages from 576 contributors in 57.122s`

##vue/cli-initのインストール
`$ npm install -g @vue/cli-init

  • @vue/cli-init@3.10.0
    added 256 packages from 208 contributors in 22.96s`

##失敗例
###vue-cli2xがインストールされてしまった
vue-cli3をインストールしたいのに、vue-cli2xがインストールされてしまったので備忘録。
VSCodeのTerminal(bash)で以下のコマンドを実行
`$ npm install -g vue-cli

  • vue-cli@2.9.6
    added 241 packages from 206 contributors in 18.168s`

npm3系のインストールコマンドは"@Vue/cli"とする必要があるらしい。

###vue-cli2xをglobalからuninstall
$ npm uninstall -g vue-cli removed 241 packages in 3.341s

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?