after
API Reference for the after function.
after allows you to schedule work to be executed after a response (or prerender) is finished. This is useful for tasks and other side effects that should not block the response, such as logging and analytics.
It can be used in Server Components (including generateMetadata), Server Actions, Route Handlers, and Proxy.
The function accepts a callback that will be executed after the response (or prerender) is finished:
Good to know: after is not a Dynamic API and calling it does not cause a route to become dynamic. If it's used within a static page, the callback will execute at build time, or whenever a page is revalidated.
Reference
Parameters
- A callback function which will be executed after the response (or prerender) is finished.
Duration
after will run for the platform's default or configured max duration of your route. If your platform supports it, you can configure the timeout limit using the maxDuration route segment config.
Good to know
afterwill be executed even if the response didn't complete successfully. Including when an error is thrown or whennotFoundorredirectis called.- You can use React
cacheto deduplicate functions called insideafter. aftercan be nested inside otheraftercalls, for example, you can create utility functions that wrapaftercalls to add additional functionality.
Examples
With request APIs
You can use request APIs such as cookies and headers inside after in Server Actions and Route Handlers. This is useful for logging activity after a mutation. For example:
However, you cannot use these request APIs inside after in Server Components. This is because Next.js needs to know which part of the tree access the request APIs to support Cache Components, but after runs after React's rendering lifecycle.
Platform Support
| Deployment Option | Supported |
|---|---|
| Node.js server | Yes |
| Docker container | Yes |
| Static export | No |
| Adapters | Platform-specific |
Learn how to configure after when self-hosting Next.js.
Reference: supporting after for serverless platforms
Using after in a serverless context requires waiting for asynchronous tasks to finish after the response has been sent. In Next.js and Vercel, this is achieved using a primitive called waitUntil(promise), which extends the lifetime of a serverless invocation until all promises passed to waitUntil have settled.
If you want your users to be able to run after, you will have to provide your implementation of waitUntil that behaves in an analogous way.
When after is called, Next.js will access waitUntil like this:
Which means that globalThis[Symbol.for('@next/request-context')] is expected to contain an object like this:
Here is an example of the implementation.
Version History
| Version History | Description |
|---|---|
v15.1.0 | after became stable. |
v15.0.0-rc | unstable_after introduced. |