ランキングに戻る

trailheadapps/apex-recipes

Apexdeveloper.salesforce.com

A library of concise, meaningful examples of Apex code for common use cases following best practices.

salesforceapextriggerasyncinvocablecacheintegration
スター成長
スター
1.1k
フォーク
555
週間成長
Issue
1
5001k
2020年10月2022年9月2024年8月2026年7月
README

Apex Recipes

CI Workflow Packaging Workflow codecov

Introduction

Apex Recipes is a library of concise, meaningful examples of code for common use cases utilizing best practices. They reflect enterprise patterns that can be utilized for real world solutions and should be relevant to developers of all skill levels. The code is intended to reflect clarity while trying to maintain brevity. See the Table of Contents for installation options. We recommend using the Salesforce CLI and a scratch org for your initial deployment.

Trailhead Badge

Learn more about this app by completing the Quick Start: Explore the Apex Recipes Sample App Trailhead project or by watching this short presentation video.

Table of contents

Installing the app using a Scratch Org

  1. 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
  2. If you haven't already done so, authorize with your hub org and provide it with an alias (myhuborg in the command below):

    sf org login web -d -a myhuborg
    
  3. Clone the apex-recipes repository:

    git clone https://github.com/trailheadapps/apex-recipes
    cd apex-recipes
    
  4. Create a scratch org and provide it with an alias (apex-recipes in the command below):

    sf org create scratch -d -f config/project-scratch-def.json -a apex-recipes
    
  5. Push the app to your scratch org:

    sf project deploy start
    
  6. Assign the Apex_Recipes permission set to the default user:

    sf org assign permset -n Apex_Recipes
    
  7. Assign the Walkthroughs permission set to the default user:

    sf org assign permset -n Walkthroughs
    
  8. Import Sample Data

    sf data tree import -p ./data/data-plan.json
    sf data tree import -p ./data/data-plan2.json
    
  9. Execute the Anonymous Apex setup script

    sf apex run --file data/setup.apex
    
  10. Open the scratch org:

    sf org open
    
  11. In App Launcher, select the Apex Recipes app.

Installing the app using an Unlocked Package

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.

  1. Log in to your org

  2. Go to Setup, under Platform Cache, and click the "Request Trial Capacity" button. Request a Platform Cache Trial

  3. Click this link to install the Apex Recipes unlocked package in your org.

  4. Select Install for All Users

  5. Once installed:

  6. (Optional) Add additional data examples. In the data folder are sample CSV files which can be used by dataloader.io or the Import Data Wizard.

  7. (Optional) Load the sample Junction objects data:

    • Click the Setup Gear Icon
    • Click Developer Console
    • Click Debug
    • Click Open Execute Anonymous Window
    • Enter: DataFactoryForPackageInstalls.generateData();
    • Click Execute
  8. Add the Apex Recipes permission set to your user:

    • Go to Setup > Users > Permission Sets.
    • Click Apex_Recipes.
    • Click Manage Assignments.
    • Check your user and click Add Assignments.
  9. In App Launcher, select the Apex Recipes app.

    • If the app does not load, please double check that the Apex Recipes permission set active on your user.

Installing the App using a Developer Edition Org or a Trailhead Playground via the Salesforce CLI

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.

  1. Clone this repository:

    git clone https://github.com/trailheadapps/apex-recipes
    cd apex-recipes
    
  2. Authorize with your Trailhead Playground or Developer Edition org and provide it with an alias (mydevorg in the command below):

    sf org login web -s -a mydevorg
    
  3. If you are setting up a Developer Edition: go to Setup, under Platform Cache, and click the "Request Trial Capacity" button. Request a Platform Cache Trial

  4. Run this command in a terminal to deploy the app.

    sf project deploy start -d force-app
    
  5. Assign the Apex_Recipes permission set to the default user.

    sf org assign permset -n Apex_Recipes
    
  6. Import Sample Data

    sf data tree import -p ./data/data-plan.json
    sf data tree import -p ./data/data-plan2.json
    
  7. Execute the Anonymous Apex setup script

    sf apex run --file data/setup.apex
    
  8. If your org isn't already open, open it now:

    sf org open -o mydevorg
    
  9. In App Launcher, select the Apex Recipes app.

    • If the app does not load, please double check that the Apex Recipes permission set active on your user.

Optional Installation Instructions

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.

Code formatting

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.

Warning The current Apex Prettier plugin version requires that you install Java 11 or above.

Code linting

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 Lighning Web Components development.

Apex Docs

ApexDocs is a NPM package for generating Markdown (.md) files from the Classes in this repository. The package.json file in this repo includes an npm script for generating these Apex docs. Execute npm run apexdocs to generate fresh docs. These docs are shipped as part of a Static Resource and are available in your org via the Apex Recipes app. Navigate to any class and click it's coresponding Docs tab.

Pre-commit hook

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 commit changes.

To set up the formatting and linting pre-commit hook:

  1. Install Node.js if you haven't already done so
  2. Run npm install in 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.)

Note: This projects also contains Jest tests for unit testing Lightning Web Components. If you experience errors regarding deasync when running npm install please check out the troubleshooting information in the lwc-jest repository.

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
npm run prettier
関連リポジトリ
nocobase/nocobase

NocoBase is an open-source AI + no-code platform for building business systems fast. Instead of generating everything from scratch, AI works on top of production-proven infrastructure and a WYSIWYG no-code interface, so you get both speed and reliability.

TypeScriptnpmOtherno-codelow-code
nocobase.com
23.4k2.8k
salesforce/LAVIS

LAVIS - A One-stop Library for Language-Vision Intelligence

Jupyter NotebookBSD 3-Clause "New" or "Revised" Licensedeep-learningdeep-learning-library
11.3k1.1k
trailheadapps/lwc-recipes

A collection of easy-to-digest code examples for Lightning Web Components on Salesforce Platform

JavaScriptnpmCreative Commons Zero v1.0 Universalsalesforcelightning-web-components
developer.salesforce.com
2.9k3.2k
1Panel-dev/CordysCRM

🔥 Cordys 是由飞致云匠心打造的新一代的开源 AI CRM 系统,深度融合信息化、数字化与智能化能力,支持私有化部署,全面保障企业数据安全与主权。

JavaMavenOtherai-crmcrm-system
cordys.cn
2.5k521
salesforce/TransmogrifAI

TransmogrifAI (pronounced trăns-mŏgˈrə-fī) is an AutoML library for building modular, reusable, strongly typed machine learning workflows on Apache Spark with minimal hand-tuning

ScalaBSD 3-Clause "New" or "Revised" Licensemlautoml
transmogrif.ai
2.3k400
salesforce/cloudsplaining

Cloudsplaining is an AWS IAM Security Assessment tool that identifies violations of least privilege and generates a risk-prioritized report.

JavaScriptnpmBSD 3-Clause "New" or "Revised" Licenseawsaws-iam
cloudsplaining.readthedocs.io
2.2k219
salesforce/policy_sentry

IAM Least Privilege Policy Generator

PythonPyPIMIT Licenseawsiam
policy-sentry.readthedocs.io
2.2k155
simple-salesforce/simple-salesforce

A very simple Salesforce.com REST API client for Python

PythonPyPIOthersalesforceapi
1.9k722
salesforce/lwc

⚡️ LWC - A Blazing Fast, Enterprise-Grade Web Components Foundation

JavaScriptnpmOtherlwcsalesforce
lwc.dev
1.8k448
julien040/anyquery

One SQL interface for 60+ tools (e.g., GitHub, Notion, Airtable). Plug into any LLM through MCP.

GoGo ModulesOtherapibusiness-intelligence
anyquery.dev
1.7k123
steedos/steedos-platform

The AI-Native Infrastructure for Enterprise Apps. Powered by ObjectStack (ObjectQL, ObjectOS, Object UI). Turn Prompts into Enterprise Software.

TypeScriptnpmGNU Affero General Public License v3.0salesforcepaas
objectstack.ai
1.6k413
jsforce/jsforce

Salesforce API Library for JavaScript applications (both on Node.js and web browser)

TypeScriptnpmMIT Licensesalesforcejsforce
jsforce.github.io
1.5k549