typescript-async-patterns

Installation
SKILL.md

TypeScript Async Patterns

Master asynchronous programming patterns in TypeScript, including Promises, async/await, error handling, async iterators, and advanced patterns for building robust async applications.

Promises and async/await

Basic Promise Creation

// Creating a Promise
function delay(ms: number): Promise<void> {
  return new Promise((resolve) => {
    setTimeout(resolve, ms);
  });
}
Installs
54
GitHub Stars
166
First Seen
Jan 24, 2026
typescript-async-patterns — thebushidocollective/han