Skip to content

Workflows

Fresh 🌱

End-to-end patterns shown as diagrams. Where SOPs are step lists and Guides explain concepts, these show how the pieces move together over the life of a request or a release.

The three workflows

WorkflowAnswers the question
Module Load LifecycleWhat happens between require('.') and your function running?
Async Work PatternHow does background work travel from JS, to a Rust thread, and back to a resolved promise?
Project to npm PipelineHow does a module go from npm init neon to an installable package?
flowchart LR
    A[Module Load Lifecycle] --> B[Async Work Pattern]
    B --> C[Project to npm Pipeline]
    style A fill:#10b981,color:#fff
    style B fill:#6366f1,color:#fff
    style C fill:#f59e0b,color:#fff