A collection of easy-to-digest code examples for building apps on the Salesforce platform using modern frontend frameworks. Each recipe demonstrates how to accomplish a specific task — from querying data with GraphQL to handling errors and navigating between views — in the fewest lines of code possible while following best practices. Each recipe includes an inline source code viewer so you can see exactly how it works.
This sample application is designed to run on the Salesforce Platform. It covers what a frontend developer needs to know about Salesforce, and what a Salesforce developer needs to know about modern frameworks — taught at the intersection.
Multi-Framework currently supports React, with additional frameworks coming over time. The feature is in Beta and only available in Scratch Orgs and Sandboxes — not yet in Developer Edition orgs or Trailhead Playgrounds.
There is a known limitation where orgs that do not use English (
en_US) as the default language may experience issues. The scratch org definition in this project explicitly sets"language": "en_US"to work around this. If you are using a sandbox or other org type, ensure the default language is set to English.
Learn more: Read the Salesforce Multi-Framework developer guide for a comprehensive overview.
graph LR
A[React App<br/>Vite + TypeScript] -->|Build| B[UI Bundle]
B -->|Deploy| C[Salesforce Org]
C -->|Query| D[GraphQL UIAPI]
C -->|Fetch| E[REST APIs]
- Setting up a Scratch Org
- Setting up a Sandbox
- Developer Edition
- Install & Deploy React Recipes
- Local Development
- Testing
- Optional installation instructions
-
Set up your environment. Follow the steps in the Quick Start: Lightning Web Components Trailhead project. The steps include:
- Enable Dev Hub in your Trailhead Playground
- Install Salesforce CLI
- Install Visual Studio Code
- Install the Visual Studio Code Salesforce extensions
-
Make sure you have Node.js v22+ and npm installed.
-
Install the ui-bundle-dev plugin:
sf plugins install @salesforce/plugin-ui-bundle-dev
-
If you haven't already done so, authorize your hub org and provide it with an alias (myhuborg in the command below):
sf org login web -d -a myhuborg
-
Clone this repository:
git clone https://github.com/trailheadapps/multiframework-recipes cd multiframework-recipes -
Create a scratch org and provide it with an alias (recipes in the command below):
sf org create scratch -d -f config/project-scratch-def.json -a recipes
-
Deploy shared metadata:
sf project deploy start -d force-app/main/default/objects -d force-app/main/default/classes -d force-app/main/default/permissionsets -d force-app/main/default/cspTrustedSites
-
Assign the recipes permission set to the default user:
sf org assign permset -n recipes
-
Import sample data:
sf data tree import -p ./data/data-plan.json
-
Set up your environment. Follow the steps in the Quick Start: Lightning Web Components Trailhead project. The steps include:
- Install Salesforce CLI
- Install Visual Studio Code
- Install the Visual Studio Code Salesforce extensions
-
Make sure you have Node.js v22+ and npm installed.
-
Install the ui-bundle-dev plugin:
sf plugins install @salesforce/plugin-ui-bundle-dev
-
Authorize your sandbox org and provide it with an alias (mysandbox in the command below):
sf org login web -a mysandbox
-
Clone this repository:
git clone https://github.com/trailheadapps/multiframework-recipes cd multiframework-recipes -
Deploy shared metadata:
sf project deploy start -d force-app/main/default/objects -d force-app/main/default/classes -d force-app/main/default/permissionsets -d force-app/main/default/cspTrustedSites
-
Assign the recipes permission set to the default user:
sf org assign permset -n recipes
-
Import sample data:
sf data tree import -p ./data/data-plan.json
Developer Edition support is coming soon.
-
Install dependencies, fetch the GraphQL schema, and run codegen:
cd force-app/main/react-recipes/uiBundles/reactRecipes npm install npm run graphql:schema npm run graphql:codegen -
Build the app:
npm run build
-
Deploy the UI bundle to your org:
cd ../../../../.. sf project deploy start --source-dir force-app/main/react-recipes/uiBundles/reactRecipes -
Open the scratch org and select the React Recipes app in App Launcher:
sf org open
Start the Vite development server with hot module replacement:
npm run devBuild the app for production:
npm run buildPreview the production build locally:
npm run previewRun unit tests (Vitest + React Testing Library):
npm testRun with coverage:
npm run test:coverageRun end-to-end tests (Playwright):
npx playwright install chromium
npm run build:e2e
npm run test:e2eThis repository contains several files that are relevant if you want to integrate modern web development tools into your Salesforce development processes or into your continuous integration/continuous deployment processes.
Prettier is a code formatter used to ensure consistent formatting across your code base. To use Prettier with Visual Studio Code, install this extension from the Visual Studio Code Marketplace. The .prettierignore and .prettierrc files are provided as part of this repository to control the behavior of the Prettier formatter.
ESLint is a popular JavaScript linting tool used to identify stylistic errors and erroneous constructs. The apps use ESLint with TypeScript and framework-specific plugins.
This repository comes with a package.json file that makes it easy to set up a pre-commit hook that enforces code formatting and linting by running Prettier and ESLint every time you git commit changes.
To set up the formatting and linting pre-commit hook:
- Install Node.js if you haven't already done so.
- Run
npm installin your project's root folder to install the ESLint and Prettier modules.
Prettier and ESLint will now run automatically every time you commit changes. The commit will fail if linting errors are detected. You can also run the formatting and linting from the command line using the following commands (check out package.json for the full list):
npm run lint