0
2

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.

NextjsのReact環境構築 簡単メモ

Last updated at Posted at 2023-08-08
いくつの概念をメモする
.TypeScript コンパイルにより、JavaScriptに変換される。
.Node.js JavaScriptのランタイム環境であり、サーバーサイドでJavaScriptを実行するためのプラットフォーム。
.next.js Reactベースのフロントエンドフレームワークである。
.React JavaScriptライブラリであり、ユーザーインターフェースを構築するためのコンポーネントベースのアプローチを提供する


① nodejsをインストールする
 ※macの場合、環境変数を設定すること
  ※インストール後、必要な場合 npmのモジュールをインストール
     例: npm install -g create-next-app
② gitをインストールする
③ stoplight-studioをインストールする
④ nextのreactのプロジェクトを作成する 
  例:npx create-next-app my-react-next
⑤ visual studio code で先作ったフォルダを開く
⑥ ターミナルで「npm run dev」を入力し、Enterしたら
      「http://localhost:3000」を起動した
0
2
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
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?