3
5

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.

AWS Cloud9 で Nuxt.js を使う

Posted at

1. Environmentを作成

いつも通り、AWS Cloud9上でCreate environmentをクリックして作成する

2. node.jsをインストール

AWS Cloud9では、既にインストールされている。
node --versionで確認。

3. Vue CLIをインストール

npm install -g @vue/cli
npm install -g @vue/cli-service-global

4. Nuxt.jsをインストール

npm install --save nuxt

5. プロジェクトを作成

npx create-nuxt-app <project_name>

6. プロジェクトを実行

cd <project_name>
npm run dev

あとは、AWS Cloud9上で「Preview」をクリックすれば表示される。

3
5
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
3
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?