1
1

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 1 year has passed since last update.

Next.jsを使ってみる!create next-app

Last updated at Posted at 2022-03-06

Next.jsとは?

Next.jsは、高速なWebアプリケーションを作成するためのビルディングブロックを提供する柔軟なReactフレームワークです。

最初にディレクトリーを作りましょう

mkdir next-test
cd next-test

Next.jsのプロジェクトを作成します。

npx create-next-app

yarn create next-app

途中でプロジェクトの名前を問われるのですが名前はなんでもいいです。そのまま名前を入れずにEnterを押すとmy-appという名前で新しいディレクトリーが作られて、この中に各ファイルがダウンロードされます。

中身はこんな感じ

.
┝ node_modules
┝ pages
│ ┝ api
│ ┝ _app.js
│ └ index.js
┝ public
┝ styles
┝ .eslintrc.json
┝ .gitignore
┝ next.config.js
┝ package.json
└ README.md

中身の詳細はまた別で投稿します。

cd my-app
yarn dev

yarn devを行うと、ターミナルで

$ next dev
ready - started server on 0.0.0.0:3000, url: http://localhost:3000
event - compiled client and server successfully in 1169 ms (124 modules)
wait  - compiling...
event - compiled successfully in 17 ms (97 modules)
wait  - compiling...
event - compiled successfully in 8 ms (27 modules)

と表示されます。  
http://localhost:3000
リンクにアクセスしましょう!

アクセスすると
スクリーンショット 2022-03-04 15.41.41.png

と出てきます。

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?