A collection of easy-to-digest code examples for Lightning Web Components on Salesforce Platform
A collection of easy-to-digest code examples for Lightning Web Components. Each recipe demonstrates how to code a specific task in the fewest lines of code possible, while following best practices. A View Source link takes you right to the code in GitHub. From Hello World to data access and third-party libraries, there is a recipe for that!
This sample application is designed to run on Salesforce Platform. If you want to experience Lightning Web Components on any platform, please visit https://lwc.dev, and try out our Lightning Web Components sample application LWC Recipes OSS.
Installing the app using a Scratch Org: This is the recommended installation option. Use this option if you are a developer who wants to experience the app and the code.
Installing the app using an Unlocked Package: This option allows anybody to experience the sample app without installing a local development environment.
Installing the app using a Developer Edition Org or a Trailhead Playground: Useful when tackling Trailhead Badges or if you want the app deployed to a more permanent environment than a Scratch org.
- Enable Dev Hub in your Trailhead Playground - Install Salesforce CLI - Install Visual Studio Code - Install the Visual Studio Code Salesforce extensions, including the Lightning Web Components extension
If you haven't already done so, authorize your hub org and provide it with an alias (myhuborg in the command below):
sfdx auth:web:login -d -a myhuborg
Clone the lwc-recipes repository:
git clone https://github.com/trailheadapps/lwc-recipes cd lwc-recipes
Create a scratch org and provide it with an alias (lwc-recipes in the command below):
sfdx force:org:create -s -f config/project-scratch-def.json -a lwc-recipes
Push the app to your scratch org:
sfdx force:source:push
Assign the recipes permission set to the default user:
sfdx force:user:permset:assign -n recipes
Import sample data:
sfdx force:data:tree:import -p ./data/data-plan.json
Open the scratch org:
sfdx force:org:open
In Setup, under Themes and Branding, activate the Recipes Lite or Recipes Blue theme.
In App Launcher, click View All then select the LWC app.
Follow this set of instructions if you want to deploy the app to a more permanent environment than a Scratch org or if you don't want to install the local developement tools. You can use a non source-tracked orgs such as a free Developer Edition Org or a Trailhead Playground.
Make sure to start from a brand-new environment to avoid conflicts with previous work you may have done.
Log in to your org
Click this link to install the Recipes unlocked package in your org.
Select Install for All Users
Import Account and Contacts data:
- Click [here](https://raw.githubusercontent.com/trailheadapps/lwc-recipes/main/data/Accounts-Contacts.csv) to access the **Accounts-Contacts.csv** file. Right click on the browser window and save the file as **Accounts-Contacts.csv**. - In **Setup**, type **Data Import** in the Quick Find box and click **Data Import Wizard**. - Click **Launch Wizard**. - Click **Accounts and Contacts**, and click **Add New Records**. - Drag the **Accounts-Contacts.csv** file you just saved to the upload area. - Click **Next**, **Next**, and **Start Import**.
- Go to **Setup > Users > Permission Sets**. - Click **recipes**. - Click **Manage Assignments**. - Check your user and click **Add Assignments**.
In Setup, under Themes and Branding, activate the Recipes Lite or Recipes Blue theme.
In App Launcher, click View All then select the LWC app.
Follow this set of instructions if you want to deploy the app to a more permanent environment than a Scratch org. This includes non source-tracked orgs such as a free Developer Edition Org or a Trailhead Playground.
Make sure to start from a brand-new environment to avoid conflicts with previous work you may have done.
Clone this repository:
git clone https://github.com/trailheadapps/lwc-recipes cd lwc-recipes
Authorize your Trailhead Playground or Developer org and provide it with an alias (mydevorg in the command below):
sfdx auth:web:login -s -a mydevorg
Run this command in a terminal to deploy the app.
sfdx force:source:deploy -p force-app
Assign the
recipespermission set to the default user.
sfdx force:user:permset:assign -n recipes
(Optional) Assign the
Walkthroughspermission set to the default user.
Note: this will enable In App Guidance Walkthroughs, allowing you to be taken through a guided tour of the sample app.
``` sfdx force:user:permset:assign -n Walkthroughs ```
Import some sample data.
sfdx force:data:tree:import -p ./data/data-plan.json
If your org isn't already open, open it now:
sfdx force:org:open -u mydevorg
In Setup, under Themes and Branding, activate the Recipes Lite or Recipes Blue theme.
In App Launcher, select the LWC app.
This repository contains several files that are relevant if you want to integrate modern web development tooling to your Salesforce development processes, or to 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. To use ESLint with Visual Studio Code, install this extension from the Visual Studio Code Marketplace. The .eslintignore file is provided as part of this repository to exclude specific files from the linting process in the context of Lightning Web Components development.
This repository also 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 commitchanges.
To set up the formatting and linting pre-commit hook:
npm installin your project's root folder to install the ESLint and Prettier modules (Note: Mac users should verify that Xcode command line tools are installed before running this command.)
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:lwc npm run prettier
Code Tours are guided walkthroughs that will help you understand the app code better. To be able to run them, install the CodeTour VSCode extension.