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.

Nuxt.js入門してみました。

Last updated at Posted at 2019-01-12

新年ということで、初めてqiita書いみました。

環境

  • OS : macOS Mojave 10.14.2
  • node : v11.6.0
  • npm : 6.5.0
  • vue-cli : 3.3.0

Nuxt.jsにはnodeの環境と、yarnまたはnpmの環境が必要になります。(今回はyarnを使用していきます)

各種インストール

nodeの環境はこちらからDLして手順にしたがって導入してください -> https://nodejs.org/ja/

brew install yarn
npm install -g vue-cli
npm install -g @vue/cli @vue/cli-init

#インストールされているか確認
vue -V #3.3.0

VueCLIを使ってテンプレートを作成

# vue init テンプレート名 フォルダ名
vue init nuxt-community/starter-template test

# ↓以下質問がされるので随時対応
? Project name test
? Project description Nuxt.js project
? Author eyescream

   vue-cli · Generated "test".

   To get started:

     cd test
     npm install # Or yarn
     npm run dev
cd test
yarn #パッケージインストール
yarn run dev

# http://localhost:3000へアクセス
スクリーンショット 2019-01-12 17.36.56.png
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?