This page collects common setup and runtime issues.Documentation Index
Fetch the complete documentation index at: https://docs.wyrly.dev/llms.txt
Use this file to discover all available pages before exploring further.
Provider not found
A provider is missing when the container cannot resolve a token or class. Check that you registered the provider at the composition root:deps is the same token used during registration.
Scoped dependency resolved from root
Scoped dependencies should be resolved from a scope, not from the root container.Singleton depends on scoped dependency
A singleton should not capture request-specific state. If validation reports a lifetime violation, move the dependency to a scoped or transient lifetime, or change the design so the singleton does not depend on request-local data.Decorator metadata is not being read
This is expected. Wyrly does not usereflect-metadata or emitDecoratorMetadata.
Declare dependencies explicitly:
Request state leaks between users
Check lifetimes. Request-specific objects such as authenticated user context, DataLoader instances, transactions, and request-local caches should usually bescoped.