2 个仓库
Patterns for executing a list of asynchronous functions in a strict serial order.
Distinct from Asynchronous Callback Chains: Focuses on the linear sequencing of distinct tasks rather than generic callback chains.
Explore 2 awesome GitHub repositories matching software engineering & architecture · Task Sequences. Refine with filters or upvote what's useful.
Effector is a reactive state management library and data flow orchestrator designed for building complex, event-driven applications. It models application logic as a directed acyclic graph, where state updates and asynchronous side effects propagate automatically through declarative pipelines. By decoupling business logic from user interface layers, it allows developers to maintain state in independent containers that communicate via standard interfaces, ensuring the system remains framework-agnostic. The library distinguishes itself through its robust support for isolated execution scopes, w
Chains asynchronous operations to ensure subsequent requests trigger only after preceding dependencies complete.
This repository is a collection of JavaScript coding challenges and a comprehensive interview guide. It provides reference implementations and educational examples designed to help developers master language fundamentals and prepare for technical interviews. The project covers a wide array of specialized implementations, including functional programming patterns like currying and partial application, as well as asynchronous patterns for concurrency control. It also includes practical examples of Document Object Model manipulation and the implementation of common data structures such as stacks
Implements the execution of asynchronous functions in a fixed sequence using promises or async/await.