Zadaj pytanie i otrzymaj streszczenie dokumentu, odwołując się do tej strony i wybranego dostawcy AI
Historia wersji
- "Initial documentation"v9.4.023.08.2026
Treść tej strony została przetłumaczona przy użyciu sztucznej inteligencji.
Zobacz ostatnią wersję oryginalnej treści w języku angielskimJeśli masz pomysł na ulepszenie tej dokumentacji, zachęcamy do przesłania pull requesta na GitHubie.
Link do dokumentacji na GitHubieKopiuj dokument Markdown do schowka
Documentation: getIntlayer Function in intlayer
Description
The getIntlayer function picks one dictionary by its key and returns its content interpreted for a given locale. It is the framework-agnostic counterpart of the useIntlayer hook: same content, same selectors, but usable anywhere a React context is not available — Node scripts, server functions, route loaders, metadata builders, Express/Fastify handlers, tests.
It reads the dictionaries generated by Intlayer in .intlayer/, so the key argument is typed and autocompleted from your own content declarations, and the returned object is fully typed down to each leaf.
Key Features:
- Typed dictionary keys and typed returned content
- Interprets every content node (
t(),enu(),cond(),insert(),nest(),md(),html(),file(),gender()) - Accepts a locale or a selector object (collections, variants)
- Results are memoized per
key + locale + selector - Falls back to a safe proxy in development when a dictionary is missing, instead of crashing
Function Signature
Skopiuj kod do schowka
Parameters
key: DictionaryKeys- Description: The key of the dictionary to read, as declared in your content files.
- Type:
DictionaryKeys— a union of every declared dictionary key. - Required: Yes
localeOrSelector: LocalesValues | DictionarySelector- Description: The locale to interpret the content with, or a selector object for dynamic dictionaries.
'fr'— a locale{ item: 2 }— a collection item (omititemto get every item as an array){ variant: 'black-friday' }— a named variant (omit for thedefaultone){ variant: { id: 'prod_abc', userId: '123' } }— a structured variant- Any selector can carry a locale:
{ item: 2, locale: 'fr' }
- Type:
LocalesValues | DictionarySelector - Required: No (Optional) — defaults to the configured
defaultLocale.
- Description: The locale to interpret the content with, or a selector object for dynamic dictionaries.
plugins: Plugins[]- Description: Custom node transformers replacing the base interpreter plugins. Advanced use only; omit it to keep the default behaviour.
- Type:
Plugins[] - Required: No (Optional)
Returns
- Type: The interpreted content of the dictionary, typed from your declaration.
- Description: A plain object mirroring the
contentfield of your dictionary, where every Intlayer node has been resolved to its final value for the requested locale.
Example Usage
Basic Usage
Skopiuj kod do schowka
Skopiuj kod do schowka
import { getIntlayer } from "intlayer";
const { title } = getIntlayer("app", "fr"); // "Bonjour"
Without a locale
Omitting the locale interprets the content with the defaultLocale declared in your configuration.
Skopiuj kod do schowka
Inside a server handler
Skopiuj kod do schowka
With a selector (collections and variants)
Skopiuj kod do schowka
Behaviour Notes
Caching
Results are memoized in a module-level cache keyed by key + locale + selector. Calling getIntlayer("app", "fr") repeatedly interprets the dictionary once and returns the very same object afterwards.
Missing dictionaries
In development, requesting a key that has no generated dictionary logs a warning once and returns a safe fallback proxy: reading content.title yields the string "app.title" instead of throwing. This keeps a page usable while the missing declaration is fixed. Run the Intlayer build (or the dev server) so the dictionary is generated.
Bundle size
getIntlayer reads the merged dictionary, which holds every locale. In client bundles, the build plugins rewrite the call so only the required content is shipped. When you read content outside of rendering (metadata, loaders, server functions) and want a single locale loaded on demand, use getIntlayerAsync instead.
Related Functions
getIntlayerAsync: Async counterpart loading a single locale chunk.getDictionary: Interprets a dictionary object you pass yourself, instead of one looked up by key.useIntlayer: The React hook equivalent, reading the locale from the provider.
TypeScript
Skopiuj kod do schowka