-
Notifications
You must be signed in to change notification settings - Fork 0
Development Guide
-
Node.js のインストール
https://nodejs.org/ja/node --version npm install -g npm npm --version
-
Corepack有効化
corepack enable
workspace % npx create-next-app@latest
Need to install the following packages:
create-next-app@13.4.9
Ok to proceed? (y) y
✔ What is your project named? … next-minesweeper
✔ Would you like to use TypeScript? … Yes
✔ Would you like to use ESLint? … Yes
✔ Would you like to use Tailwind CSS? … Yes
✔ Would you like to use `src/` directory? … Yes
✔ Would you like to use App Router? (recommended) … Yes
✔ Would you like to customize the default import alias? … Yes
-
リポジトリをクローン
git clone https://github.com/nejiko96/next-minesweeper.git
-
依存パッケージの初期化
cd next-minesweeper npm install # or yarn
-
アプリ起動
npm run dev # or yarn dev
サーバが起動して
http://localhost:3000/
といった URL が表示されるのでブラウザから開くとアプリが動かせる -
起動した状態のままソースを追加・変更すると自動でブラウザに反映される
-
停止
Ctrl+C -
ビルド
npm run build # or yarn build
.next
フォルダにビルド結果が生成される -
デプロイ
- VercelがGitHubのソース更新を検知して勝手にデプロイする
- Vercelにサインアップしたらいきなりリポジトリを選択させられて自動連携しはじめた
- チームで使うとお金を取られるので、その時には自分でGitHub Actionsの設定をしたほうがよい
-
コードが最新の TypeScript のお作法に沿って書かれているかチェックしてくれる
-
プロジェクト作成時の質問で「Would you like to use ESLint?」にYesと答えると
eslint がプロジェクトに追加されて設定が行われた状態になっている -
VSCode の拡張機能で「ESLint」をインストール
-
エディタでソースを開くとコードチェックエラーが「問題」タブに出てくるようになる
-
.vscode/settings.json
に以下の設定をするとソース保存時に自動で修正される{ "editor.codeActionsOnSave": { "source.fixAll.eslint": "explicit", "source.organizeImports": "explicit" } }
-
コードをいい感じに整形してくれる
-
パッケージ追加
- prettier : Prettier本体
- eslint-config-prettier : eslint のフォーマットルールを一部無効化する
npm install --save-dev prettier eslint-config-prettier # or yarn add --dev prettier eslint-config-prettier
-
.prettierrc.json
を作成{ "printWidth": 120, "tabWidth": 2, "singleQuote": true, "semi": false }
-
.eslintrc.json
の設定追加{ "extends": ["next/core-web-vitals", "prettier"] }
-
VSCode の拡張機能で「Prettier」をインストール
-
.vscode/settings.json
の設定追加// ESLintのフォーマット機能を無効化 "eslint.format.enable": false, // 保存時にPrettierによる整形を行う "editor.formatOnSave": true, "editor.defaultFormatter": "esbenp.prettier-vscode",
-
プロジェクト作成時の質問で「Would you like to use Tailwind CSS? 」にYesと答えると
プロジェクトに追加されて設定が行われた状態になっている -
VSCode の拡張機能「Tailwind CSS IntelliSense」を入れておくと便利
-
eslint-plugin-tailwindcss の導入
-
class の並び順をソートしてくれる ずらずら並ぶのはそのまま
-
パッケージ追加
npm install --save-dev eslint-plugin-tailwindcss # or yarn add --dev eslint-plugin-tailwindcss
-
eslintrc.json に設定追加
"extends": [ "next/core-web-vitals", "prettier", "plugin:tailwindcss/recommended" ],
-
-
.vscode/settings.json
の設定追加"files.associations": { "*.css": "tailwindcss" }