mirror of
https://github.com/kou029w/zenn.dev.git
synced 2025-01-18 16:07:59 +00:00
21 lines
1.3 KiB
Markdown
21 lines
1.3 KiB
Markdown
|
---
|
||
|
id: environment
|
||
|
title: 環境
|
||
|
---
|
||
|
|
||
|
実行環境は大きく分けて「クライアント」と「コンテナー」の 2 つがあります。
|
||
|
「クライアント」は静的ファイルや React、Vue などフロントエンド向けの開発環境です。サーバー側で Node.js のプログラムを動的に実行することはできませんが、すばやくプロトタイプ作成に取り組むことができます。多くのテンプレートが通常こちらの環境です。
|
||
|
一方「コンテナー」は Node.js のアプリケーションを実行可能なバックエンド向けの開発可能な環境です。サーバー側で Node.js のプログラムを動的に実行する場合に使います。
|
||
|
|
||
|
:::message
|
||
|
現在コンテナー環境はベータ版です。コンテナー環境のサンドボックスを作成するためにはサインインする必要あります。
|
||
|
:::
|
||
|
|
||
|
## クライアント
|
||
|
|
||
|
[CodeSandbox 公式のクライアント環境のテンプレート一覧](https://github.com/codesandbox/codesandbox-templates/tree/461d9ba5861030d59b3aa72c5e564dcc89722e8b/packages/client)
|
||
|
|
||
|
## コンテナー
|
||
|
|
||
|
[CodeSandbox 公式のコンテナー環境のテンプレート一覧](https://github.com/codesandbox/codesandbox-templates/tree/461d9ba5861030d59b3aa72c5e564dcc89722e8b/packages/container)
|