Next.js Discord

Discord Forum

Import AsyncLocalStorage in server components

Unanswered
Sun bear posted this in #help-forum
Open in Discord
Sun bearOP
anyone know if there's a way to import the Node AsyncLocalStorage package in the server components bundle?

If I do
import { AsyncLocalStorage } from 'node:async_hooks'

then I get a bundling error about the "node:" scheme not being recognized by Webpack:
Module build failed: UnhandledSchemeError: Reading from "node:async_hooks" is not handled by plugins (Unhandled scheme).

If I drop the node: prefix then I get a module not found error:
Module not found: Can't resolve 'async_hooks'

0 Replies