Context

Context middleware allows for the storage of arbitrary data that can be accessed by request handlers. This is useful for storing data that is shared between all routes, such as a database connection pool.

ReloadableMiddleware.Context.contextMethod
context([T], req) -> NamedTuple

Get the context namedtuple from the request req. Pass an optional T as the first argument, which ensures that the returned context is of that type. Throws an error if it isn't.

source
ReloadableMiddleware.Context.middlewareMethod
Context.middleware(; items...)

A middleware provider that adds the items as entries in all request contexts.

Server.dev(;
    middleware = [Context.middleware(; db = SQLite.DB(file)), ...],
    # ...
)
source