Skip to content

Commit

Permalink
docs(ja): update ja/guide/installation (#552)
Browse files Browse the repository at this point in the history
Co-authored-by: Debbie O'Brien <[email protected]>
  • Loading branch information
2 people authored and ImgBotApp committed Jan 10, 2023
1 parent 6ac7a24 commit 34fc0f8
Showing 1 changed file with 3 additions and 40 deletions.
43 changes: 3 additions & 40 deletions content/ja/guide/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,47 +34,10 @@ $ npx create-nuxt-app <project-name>
$ yarn create nuxt-app <project-name>
```

いくつか質問されます:

1. サーバーサイドのフレームワークを選択します:

- None (Nuxt default server)
- [Express](https://github.com/expressjs/express)
- [Koa](https://github.com/koajs/koa)
- [Hapi](https://github.com/hapijs/hapi)
- [Feathers](https://github.com/feathersjs/feathers)
- [Micro](https://github.com/zeit/micro)
- [Fastify](https://github.com/fastify/fastify)
- [Adonis](https://github.com/adonisjs/adonis-framework) (WIP)

2. 好きな UI フレームワークを選択します:

- None(後からでも追加できます)
- [Bootstrap](https://github.com/bootstrap-vue/bootstrap-vue)
- [Vuetify](https://github.com/vuetifyjs/vuetify)
- [Bulma](https://github.com/jgthms/bulma)
- [Tailwind](https://github.com/tailwindcss/tailwindcss)
- [Element UI](https://github.com/ElemeFE/element)
- [Ant Design Vue](https://github.com/vueComponent/ant-design-vue)
- [Buefy](https://github.com/buefy/buefy)
- [iView](https://github.com/iview/iview)
- [Tachyons](https://github.com/tachyons-css/tachyons)
- [Vuesax](https://github.com/lusaxweb/vuesax)

3. 好きなテスティングフレームワークを選択します:

- None (後からでも追加できます)
- [Jest](https://github.com/facebook/jest)
- [AVA](https://github.com/avajs/ava)

4. [Nuxt のモードを選択します。(`Universal` または `SPA`)](https://ja.nuxtjs.org/guide#%E3%82%B7%E3%83%B3%E3%82%B0%E3%83%AB%E3%83%9A%E3%83%BC%E3%82%B8%E3%82%A2%E3%83%97%E3%83%AA%E3%82%B1%E3%83%BC%E3%82%B7%E3%83%A7%E3%83%B3-spa-)
5. HTTP リクエストを簡単に行うために [axios module](https://github.com/nuxt-community/axios-module) を追加します。
6. 保存時にコードをチェックするために [EsLint](https://eslint.org/) を追加します。
7. 保存時にコードを整形するために [Prettier](https://prettier.io/) を追加します。

回答が終わり次第、全ての依存関係がインストールされ、プロジェクトを開始する次のステップへ進めます:
いくつか質問(名前、Nuxt オプション、UI フレームワーク、TypeScript、linter、テストフレームワークなど)に答えると選択した全ての依存関係がインストールされます。次のステップはプロジェクトフォルダに遷移し起動します:

```bash
$ cd <project-name>
$ npm run dev
```

Expand All @@ -90,7 +53,7 @@ Nuxt.js は `pages` ディレクトリ内のファイルの更新を監視しま

## スクラッチから始める

Nuxt.js プロジェクトをスクラッチから作ることも簡単で、必要なのは _1 つのファイルと 1 つのディレクトリ_ だけです。まずは空のディレクトリを作りましょう:
Nuxt.js プロジェクトをスクラッチから作ることも簡単で、必要なのは _1つのファイルと 1つのディレクトリ_ だけです。まずは空のディレクトリを作りましょう:

```bash
$ mkdir <project-name>
Expand Down

0 comments on commit 34fc0f8

Please sign in to comment.