📝

create next-app で構築されたファイルシステムの README 概要 🔰

2021/04/12に公開

create next-app で構築されたファイルシステムにデフォルトで格納されている、 README.md について。

ちょっと気になってちゃんと読んでみました 👀
内容としては、みなさまご存知であろう、基本的な使い方や、参照先でした 📖
たまにはこういうのもいいですよね 🍵 😂

README.md

This is a [Next.js] project bootstrapped with [create-next-app].
これは、 create-next-app でブートストラップされた Next.js プロジェクトです。
* ブートストラップ(英語: Bootstrapping)とは、外部の入力を必要とせずに実行される、自己開始型のプロセスを指す。

Getting Started

First, run the development server:
以下のコマンドで、開発サーバーを実行します。

npm run dev
# or
yarn dev

Open [http://localhost:3000] with your browser to see the result.
ブラウザで [http:// localhost: 3000] を開いて、結果を確認します。

You can start editing the page by modifying pages/index.js.
The page auto-updates as you edit the file.
pages / index.js のファイル内容を変更することで、ページの編集をできます。
ファイルを編集すると、ページが自動更新されます。

[API routes] can be accessed on [http://localhost:3000/api/hello].
This endpoint can be edited in pages/api/hello.js.
[APIルート]は[http:// localhost:3000/api/hello]からアクセスできます。
このエンドポイントは、 pages / api / hello.jsで編集できます。

The pages/api directory is mapped to /api/*.
Files in this directory are treated as [API routes]instead of React pages.
pages / api ディレクトリは / api / * にマップされます。
このディレクトリ内のファイルは、Reactページではなく[APIルート]として扱われます。

Learn More

To learn more about Next.js, take a look at the following resources:
Next.jsの詳細については、次のリソースをご覧ください。

  • Next.js Documentation - learn about Next.js features and API.
    Next.jsの機能とAPIについて学びます。

  • Learn Next.js - an interactive Next.js tutorial.
    インタラクティブなNext.jsチュートリアル

You can check out the Next.js GitHub repository - your feedback and contributions are welcome!
[Next.js GitHubリポジトリ]をチェックしてください!
フィードバックと貢献を歓迎します!

Deploy on Vercel

The easiest way to deploy your Next.js app is to use the Vercel Platform from the creators of Next.js.
Next.jsアプリをデプロイする最も簡単な方法は、[Vercel Platform]Next.jsの作成者から。
* Next.jsはVercel社が開発したものです。

Check out our Next.js deployment documentation for more details.
詳細については、[Next.jsデプロイメントドキュメント]を確認してください。

Discussion