0Pricing
Node.js Backend Development Bootcamp · レッスン

非同期JavaScriptとイベントループ

非同期プログラミングのパターン、コールバック、Promise、async/await、Node.jsのイベントループを理解します。

「非同期JavaScriptとイベントループ」はCoddyKit上の無料Node.js Backend Development Bootcampレッスンです。 これはレッスン3/4です。 下記で完全なレッスンを無料で読むことができます。その後、ブラウザ内の組み込みコードエディタと24時間対応のAIチューターでハンズオン演習できます。 これはNode.js Backend Development Bootcamp学習パスの一部であり、ウェブとCoddyKitアプリ全体で進捗が同期されます。 Node.js Backend Development Bootcampコースには全4レッスンが含まれています。

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

What is Asynchronous Code?

Asynchronous code lets Node start a slow task — a file read or network call — and keep running other code instead of blocking the main thread.

Sync vs. Async Explained

Think of a chef: synchronous means standing idle while water boils; asynchronous means chopping veggies meanwhile. Node cooks like the async chef.

The Callback Pattern

Callbacks are functions you pass to be run later — the classic way to handle async work. When the task finishes, your callback is invoked with the result or error.

Simple Callback in Action

setTimeout is a textbook async operation: it waits a set delay, then fires the callback you handed it.

function greet(name, callback) {
  setTimeout(() => {
    const message = `Hello, ${name}!`;
    callback(message);
  }, 1000); // Wait 1 second
}

function displayMessage(msg) {
  console.log(msg);
}

greet("Coddy", displayMessage);
console.log("Waiting for greeting...");

The Challenge of Callback Hell

Nesting many dependent callbacks creates Callback Hell — deeply indented, hard-to-read code where error handling and maintenance become a nightmare.

Introducing Promises

A Promise represents a value coming now, later, or never. It lives in one of three states: pending, fulfilled, or rejected.

Using Promises

Handle a Promise with .then() for success and .catch() for errors — cleaner chaining than nested callbacks.

function fetchData(shouldSucceed) {
  return new Promise((resolve, reject) => {
    setTimeout(() => {
      if (shouldSucceed) {
        resolve("Data fetched successfully!");
      } else {
        reject("Failed to fetch data.");
      }
    }, 1000);
  });
}

fetchData(true)
  .then(data => console.log(data))
  .catch(error => console.error(error));

fetchData(false)
  .then(data => console.log(data))
  .catch(error => console.error(error));

Async/Await for Clarity

async/await is syntax over Promises that makes async code read like sync code. await pauses inside an async function until the Promise settles.

Async/Await in Practice

See how async/await flattens the previous example — and how a plain try...catch handles errors right inline.

function delayedMessage(msg, delay) {
  return new Promise(resolve => {
    setTimeout(() => resolve(msg), delay);
  });
}

async function processMessages() {
  try {
    console.log("Starting process...");
    const msg1 = await delayedMessage("First message!", 1000);
    console.log(msg1);
    const msg2 = await delayedMessage("Second message!", 500);
    console.log(msg2);
    console.log("Process finished.");
  } catch (error) {
    console.error("An error occurred:", error);
  }
}

processMessages();

The Node.js Event Loop

The Event Loop is Node's engine: when the call stack empties, it pulls queued callbacks and runs them — fueling non-blocking I/O on a single thread.

Async Concepts Check

Which of the following best describes the primary benefit of using asynchronous programming in Node.js?

Async & Event Loop Recap

Async work powers Node's reach: callbacks began it, Promises structured it, async/await cleaned it up, and the Event Loop drives it all.

よくある質問

「非同期JavaScriptとイベントループ」レッスンは無料ですか?

はい。「非同期JavaScriptとイベントループ」の完全なテキストはこのウェブで無料で読めます。インタラクティブに演習し(組み込みコードエディタと24時間対応のAIチューター)、Node.js Backend Development Bootcampコースの残りをアンロックするには、CoddyKit PROにアップグレードしてください。 Node.js Backend Development Bootcampコースには全4レッスンが含まれています。

「非同期JavaScriptとイベントループ」で何を学びますか?

非同期プログラミングのパターン、コールバック、Promise、async/await、Node.jsのイベントループを理解します。 ブラウザで直接実行するハンズオンコードでNode.js Backend Development Bootcampを演習し、24時間対応のAIチューターがレッスンを進める中での質問に答えます。

Node.js Backend Development Bootcampを始めるのに経験は必要ですか?

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

「非同期JavaScriptとイベントループ」レッスンにはどのくらい時間がかかりますか?

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

このNode.js Backend Development Bootcampレッスンでコードを書いて実行できますか?

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

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

  1. Node.jsとNPM入門
  2. Node.jsのモジュールシステムを理解する
  3. 非同期JavaScriptとイベントループ
  4. ファイルシステムとストリームの操作
← Node.js Backend Development Bootcampに戻る