Skip to content

yukihataaa/nextjs-error-handling-test

Repository files navigation

This is a Next.js project bootstrapped with create-next-app.

Getting Started

First, run the development server:

npm run dev
# or
yarn dev

Open http://localhost:3000 with your browser to see the result.

You can start editing the page by modifying pages/index.tsx. The page auto-updates as you edit the file.

API routes can be accessed on http://localhost:3000/api/hello. This endpoint can be edited in pages/api/hello.ts.

The pages/api directory is mapped to /api/*. Files in this directory are treated as API routes instead of React pages.

Learn More

To learn more about Next.js, take a look at the following resources:

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.

Check out our Next.js deployment documentation for more details.

ディレクトリ構成

/
├ public/             // 静的ファイル
├ pages/
│ ├ index.tsx         // ホーム
│ ├ _app.tsx          // 共通ファイル
│ └ .../index.tsx     // 下層ページ(TOP)
│    └ ...tsx         // 下層ページ
├ components          // 再利用性の高いコンポーネント
│ ├ Header/
│ │ ├ index.module.scss
│ │ ├ Presenter.tsx
│ │ ├ index.tsx
│ │ └ __test__
│ │    └ xxx.test.tsx
│ ├ Footer/
│ │ ├ index.module.scss
│ │ ├ Presenter.tsx
│ │ ├ index.tsx
│ │ └ __test__
│ │    └ xxx.test.tsx
│ ├ Button/
│ │ ├ index.module.scss
│ │ ├ Presenter.tsx
│ │ └ index.tsx
│ │ └ __test__
│ │    └ xxx.test.tsx
│ └ .../
├ hooks/              // カスタムフック(実際に作った際に良いパターンがあれば変更)
│ ├ useA.ts
│ └ useB.ts
├ routes/
│ └ index.ts          // ルーティングの一元管理
├ utils/              // 共通の関数
├ types/              // TypeScript のカスタム型定義を機能毎に配置する。
│ ├ menu.ts
│ ├ form.ts
│ ├ cart.ts
│ └ ...ts
├ styles/
│ ├ _reset.scss
│ ├ _globals.scss
│ └ .../              // pages とディレクトリを合わせる。
│   └ xxx.module.scss
├ constants/          // 定数管理(使用するコンポーネント毎にインポート)
│ └ index.ts
├ __test__
│  ├ pages/           // ページ毎のテスト
│  │ └ xxx.test.tsx
│  └ .../             // 関数に関するテスト
│    └ xxx.test.tsx│
├ cypress             // E2Eテスト
│ └ xxx.cypress
└ .next/              // ビルドファイル

routes | Qiita