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

Deno DeployとCLI

Deno Deployを使ってDenoアプリケーションをエッジに直接デプロイし、高度なCLI機能を活用します

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

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

Welcome to Deno Deploy

In this lesson, we'll dive into Deno Deploy, a powerful platform designed for deploying Deno applications directly to the edge. It's built by the Deno team itself!

Think of it as a serverless environment optimized specifically for Deno, offering incredible speed and global reach without complex setup.

Deno Deploy's Core Philosophy

Deno Deploy simplifies edge deployment by letting you run your Deno code without complex build steps or configuration. It focuses on:

  • Simplicity: Deploy with a single command.
  • Speed: Your applications run on a globally distributed network.
  • Deno-Native: Your Deno code runs as-is, no transpilation needed.

This means less overhead and faster development cycles compared to other edge platforms.

Getting Started with Deno Deploy CLI

To deploy your Deno application, you'll primarily use the deno deploy command-line interface (CLI). First, ensure you have Deno installed.

You'll also need a Deno Deploy account to link your deployments. It's free to get started!

The CLI handles authentication and project management for you.

Your First Edge Function

Let's create a simple Deno HTTP server. Save this code as main.ts. It will respond with 'Hello from Deno Deploy!' when accessed.

This is a complete, runnable Deno program, ready for the edge:

import { serve } from "https://deno.land/std@0.210.0/http/server.ts";

const handler = (_req: Request): Response => {
  return new Response("Hello from Deno Deploy!");
};

serve(handler, { port: 8000 });
console.log("Server running on http://localhost:8000/");

Deploying Your Application

Once you have your Deno code (like main.ts), deploying it is straightforward. You'll use the deno deploy command.

You can create a project via the Deno Deploy dashboard or let the CLI create one for you.

Example deployment command:

deno deploy --project=<your-project-name> main.ts

Monitoring with Deno Deploy CLI

After deployment, you'll want to check its status and view logs. The Deno Deploy CLI provides convenient commands for this:

  • deno deploy status [project-name]: Shows information about your project's deployments, including URLs and status.
  • deno deploy logs [project-name]: Streams real-time logs from your running application, vital for debugging.

These tools are crucial for maintaining and debugging your edge functions.

Environment Variables & Secrets

Edge applications often need configuration or secrets (like API keys). Deno Deploy supports environment variables for this.

You define these variables in your project's settings on the Deno Deploy dashboard. They are securely injected into your application's runtime.

In your Deno code, you access them using Deno.env.get("VAR_NAME").

Using Environment Variables in Code

Let's update our Deno server to use an environment variable. Imagine we set GREETING_MESSAGE in the Deno Deploy dashboard.

This makes your application more flexible and secure by separating configuration from code:

import { serve } from "https://deno.land/std@0.210.0/http/server.ts";

const greeting = Deno.env.get("GREETING_MESSAGE") || "Hello from default!";

const handler = (_req: Request): Response => {
  return new Response(greeting);
};

serve(handler, { port: 8000 });
console.log("Server running on http://localhost:8000/");

Advanced Deployment Options

Deno Deploy offers more advanced features to enhance your workflow and application:

  • Git Integration: Connect your GitHub repository for automatic deployments on every push.
  • Custom Domains: Map your own domain names to your deployed applications for brand consistency.
  • Production Flag: Use --production with the CLI for optimized production deployments.

These features streamline your CI/CD pipeline and improve the user experience.

Deno Deploy CLI Question

Which of the following commands would you use to view real-time logs from your deployed Deno Deploy application?

Recap: Deno Deploy & CLI

You've learned about Deno Deploy, a Deno-native platform for edge deployment. We covered:

  • Its core benefits: simplicity, speed, and Deno-native execution.
  • Using the deno deploy CLI for simple and advanced deployments.
  • Managing environment variables for secure configuration.
  • Monitoring your applications with deno deploy status and logs.

Deno Deploy offers a powerful, streamlined way to bring your Deno applications directly to the edge!

よくある質問

「Deno DeployとCLI」レッスンは無料ですか?

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

「Deno DeployとCLI」で何を学びますか?

Deno Deployを使ってDenoアプリケーションをエッジに直接デプロイし、高度なCLI機能を活用します ブラウザで直接実行するハンズオンコードでEdge Computing with Cloudflare Workers & Denoを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

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

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

「Deno DeployとCLI」レッスンにはどのくらい時間がかかりますか?

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

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

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

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

  1. Deno DeployとCLI
  2. カスタムランタイム環境
  3. エッジ向けテストとCI/CD
  4. Blue-Greenデプロイと段階的ロールアウト
← Edge Computing with Cloudflare Workers & Denoに戻る