Appearance
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
| Workflow | Answers the question |
|---|---|
| Module Load Lifecycle | What happens between require('.') and your function running? |
| Async Work Pattern | How does background work travel from JS, to a Rust thread, and back to a resolved promise? |
| Project to npm Pipeline | How 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