0Pricing
Edge Computing with Cloudflare Workers & Deno · レッスン

最初のWorkerをデプロイする

WorkerをCloudflareのエッジネットワークにデプロイし、実稼働中の機能をテストする手順を学びます。

「最初のWorkerをデプロイする」はCoddyKit上の無料Edge Computing with Cloudflare Workers & Denoレッスンです。 これはレッスン3/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはEdge Computing with Cloudflare Workers & Deno学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Edge Computing with Cloudflare Workers & Denoコースには全4レッスンが含まれています。

このレッスンの一部はまだ翻訳されておらず、英語で表示されています。

Ready to Go Live!

You've learned to set up your environment and write a basic Cloudflare Worker. Now, let's make it accessible to the world!

Deploying your Worker means pushing your code to Cloudflare's global network, making it run at the 'edge' – closer to your users.

Before You Publish

Before deploying, ensure you've completed a couple of essential steps:

  • Cloudflare Account: You need an active Cloudflare account.
  • Wrangler Login: You must be logged in to Wrangler CLI. If not, run wrangler login to authenticate with your Cloudflare account.

These prerequisites ensure Wrangler has permission to deploy to your account.

The `wrangler publish` Command

The core command for deploying your Cloudflare Worker is wrangler publish.

You run this command from within your Worker project directory. It handles everything from bundling your code to updating it on Cloudflare's edge network.

What `publish` Does

When you run wrangler publish, several things happen:

  • Bundling: Your Worker code (often JavaScript or TypeScript) is processed and optimized.
  • Uploading: The bundled code is securely uploaded to Cloudflare's global network.
  • Deployment: Cloudflare then makes your Worker live, routing requests to it from the edge closest to the user.

This process is usually very fast!

Our Example Worker

Let's use a simple 'Hello from the Edge!' Worker for deployment. This Worker responds to any incoming request with a plain text message.

Try running this example locally first, then we'll deploy it.

export default {
  async fetch(request) {
    return new Response("Hello from the Edge!", {
      headers: { 'content-type': 'text/plain' },
    });
  },
};

Deploying Your Worker

Assuming you have the example Worker code in a project folder (e.g., my-first-worker) and have run wrangler login, navigate to that directory in your terminal.

Then, simply execute the publish command:

cd my-first-worker
wrangler publish

Deployment Confirmation

After running wrangler publish, you'll see output in your terminal indicating success. It will also provide the public URL where your Worker is now live.

This URL typically looks like https://your-worker-name.your-username.workers.dev.

Testing Your Live Worker

Now that your Worker is deployed, let's test it! You can use your web browser or a command-line tool like curl.

Open your browser and navigate to the URL provided by wrangler publish. You should see 'Hello from the Edge!'.

curl https://your-worker-name.your-username.workers.dev

Updating Your Worker

The beauty of Workers is how easy it is to update them. If you make changes to your Worker's code, simply save your changes and run wrangler publish again.

Cloudflare will automatically update your live Worker with the new code, often within seconds!

Deployment Process Check

You've just deployed your first Worker! Let's quickly review the steps involved.

Recap: Your Worker is Live!

Congratulations! You've successfully deployed your first Cloudflare Worker to the edge network.

  • You used wrangler publish to deploy your code.
  • You verified its live functionality via its public URL.
  • You learned that updates are as simple as running publish again.

Your code is now running globally, closer to users than ever before!

よくある質問

「最初のWorkerをデプロイする」レッスンは無料ですか?

はい。「最初のWorkerをデプロイする」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Edge Computing with Cloudflare Workers & Denoコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Edge Computing with Cloudflare Workers & Denoコースには全4レッスンが含まれています。

「最初のWorkerをデプロイする」で何を学びますか?

WorkerをCloudflareのエッジネットワークにデプロイし、実稼働中の機能をテストする手順を学びます。 ブラウザで直接実行するハンズオンコードでEdge Computing with Cloudflare Workers & Denoを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

Edge Computing with Cloudflare Workers & Denoを始めるのに経験は必要ですか?

事前経験は必要ありません。CoddyKitのEdge Computing with Cloudflare Workers & Denoは初級者から上級者向けに構成されているため、ここから始めるか最初から始めて、自分のペースで進むことができます。 これはレッスン3/4です。

「最初のWorkerをデプロイする」レッスンにはどのくらい時間がかかりますか?

ほとんどのCoddyKitレッスンは約5~10分かかります。各レッスンはコンパクトでインタラクティブなので、着実に進歩し、ウェブとアプリ全体で正確に前回の場所から再開できます。

このEdge Computing with Cloudflare Workers & Denoレッスンでコードを書いて実行できますか?

はい。すべてのEdge Computing with Cloudflare Workers & Denoレッスンに組み込みコードエディタが含まれているため、ブラウザでリアルコードを書いて実行し、即座のAIフィードバックを取得できます。ローカル設定は不要です。

このコースのすべてのレッスン

  1. Worker環境のセットアップ
  2. HTTPリクエストの処理
  3. 最初のWorkerをデプロイする
  4. Workersの環境変数と秘密情報
← Edge Computing with Cloudflare Workers & Denoに戻る