Skip to content

SDK Overview

@crowdin/serverless-apps-sdk is the typed SDK for building serverless Crowdin apps - frontend-only apps that run inside the Crowdin UI. The SDK is your bundle’s connection to Crowdin: it registers the app’s modules, exposes typed context, events, and host actions, and ships a Crowdin REST API client that works without tokens, a UI kit styled to match Crowdin, and an i18n runtime.

Terminal window
npm i @crowdin/serverless-apps-sdk

react, react-dom, and the Lingui packages are optional peer dependencies: the core entry point works without them; install them to use the /react, /ui, or /i18n entry points. Apps scaffolded with the CLI come with all of this preconfigured.

ImportContents
@crowdin/serverless-apps-sdkFramework-free core: module registration (prepare*), context and events, host actions (editor, project, profile, modal, …)
@crowdin/serverless-apps-sdk/reactAppUiProvider, useCrowdinContext, useCrowdinEvent, useTheme
@crowdin/serverless-apps-sdk/uiReact component library styled to match the Crowdin UI (also re-exports /react)
@crowdin/serverless-apps-sdk/ui/theme.cssTailwind theme source - for apps that run Tailwind CSS themselves (CLI-built apps do)
@crowdin/serverless-apps-sdk/ui/styles.cssPrebuilt stylesheet - for apps that do not use Tailwind
@crowdin/serverless-apps-sdk/i18nAppI18nProvider - Lingui-powered translations of your app’s own UI
@crowdin/serverless-apps-sdk/apicreateCrowdinClient() - Crowdin REST API client executed by the host
@crowdin/serverless-apps-sdk/manifest.schema.jsonJSON Schema for manifest.json

The SDK and the CLI are released in lockstep - upgrade both together:

Terminal window
pnpm up @crowdin/serverless-apps-sdk @crowdin/serverless-apps-cli

New module types, events typings, and manifest schema entries arrive with SDK releases, so an upgrade is how the app picks up new platform placements. After upgrading, crowdin-serverless-apps manifest status shows whether the stored manifest needs a push.