Middleware
यह कंटेंट अभी तक आपकी भाषा में उपलब्ध नहीं है।
Middleware allows you to intercept requests and responses and inject behaviors dynamically every time a page or endpoint is about to be rendered.
This also allows you to set and share request-specific information across endpoints and pages by mutating a locals
object that is available in all Astro components and API endpoints
Middleware is available in both SSG and SSR Astro projects.
Basic Usage
-
Create
src/middleware.js|ts
(Alternatively, you can createsrc/middleware/index.js|ts
.) -
Inside this file, export an
onRequest()
function that can be passed acontext
object andnext()
function. This must not be a default export. -
Inside any
.astro
file, access response data usingAstro.locals
.
The context
object
The context
object includes information to be made available to other middleware, API routes and .astro
routes during the rendering process.
This is an optional argument passed to onRequest()
that may contain the locals
object as well as any additional properties to be shared during rendering. For example, the context
object may include cookies used in authentication.
Storing data in context.locals
context.locals
is an object that can be manipulated inside the middleware.
This locals
object is forwarded across the request handling process and is available as a property to APIContext
and AstroGlobal
. This allows data to be shared between middlewares, API routes, and .astro
pages. This is useful for storing request-specific data, such as user data, across the rendering step.
Integrations may set properties and provide functionality through the locals
object. If you are using an integration, check its documentation to ensure you are not overriding any of its properties or doing unnecessary work.
You can store any type of data inside locals
: strings, numbers, and even complex data types such as functions and maps.
Then you can use this information inside any .astro
file with Astro.locals
.
locals
is an object that lives and dies within a single Astro route; when your route page is rendered, locals
won’t exist anymore and a new one will be created. Information that needs to persist across multiple page requests must be stored elsewhere.
The value of locals
cannot be overridden at run time. Doing so would risk wiping out all the information stored by the user. In dev
mode, Astro performs checks and will throw an error if locals
are overridden.
Example: redacting sensitive information
The example below uses middleware to replace “PRIVATE INFO” with the word “REDACTED” to allow you to render modified HTML on your page:
Middleware types
You can import and use the utility function defineMiddleware()
to take advantage of type safety:
Instead, if you’re using JsDoc to take advantage of type safety, you can use MiddlewareResponseHandler
:
To type the information inside Astro.locals
, which gives you autocompletion inside .astro
files and middleware code, declare a global namespace in the env.d.ts
file:
Then, inside the middleware file, you can take advantage of autocompletion and type safety.
Chaining middleware
Multiple middlewares can be joined in a specified order using sequence()
:
This will result in the following console order:
Learn