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

[Nuxt.js]mac環境でのNuxt.jsの環境構築方法

Last updated at Posted at 2020-12-10

##はじめに

mac環境でのNuxt.jsの環境構築方法を紹介します。

Nuxt.jsの公式サイトはこちら

こちらの公式インストール手順で環境構築を行いました。

##事前準備
npxかyarnが入っていることを確認する

#####npx公式
https://www.npmjs.com/package/npx

#####Yarn

参考記事:https://qiita.com/noboo/items/d7b540b4bff06d907a6b

#インストール
Brew install yarn

#yarnをアップデートする
Brew upgrade yarn

##Nuxtのインストール

#/create-next-appを使用する方法
① npx create-nuxt-app <project-name>
② Yarn create nuxt-app <project-name>
③ 何個か質問に答える

#インストール完了後
① cd <ディレクトリ>
② npm run dev
③ Localhost:3000 で初期画面表示

完成!

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?