
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
@salesforce/apex-node
Advanced tools
@salesforce/apex-node is an npm package that allows developers to interact with Salesforce Apex classes and methods from Node.js applications. It provides functionalities to execute Apex code, run tests, and retrieve test results programmatically.
Execute Anonymous Apex
This feature allows you to execute anonymous Apex code on a Salesforce instance. The code sample demonstrates how to log in to Salesforce and execute a simple Apex code snippet.
const { Connection, ExecuteAnonymousResponse } = require('@salesforce/apex-node');
async function executeAnonymousApex() {
const conn = new Connection({ loginUrl: 'https://login.salesforce.com' });
await conn.login('username', 'password');
const apexCode = 'System.debug(\'Hello, World!\');';
const result = await conn.tooling.executeAnonymous(apexCode);
console.log(result);
}
executeAnonymousApex();
Run Apex Tests
This feature allows you to run Apex tests asynchronously. The code sample demonstrates how to log in to Salesforce and run tests for a specified list of test classes.
const { Connection, RunTestsAsynchronousResponse } = require('@salesforce/apex-node');
async function runApexTests() {
const conn = new Connection({ loginUrl: 'https://login.salesforce.com' });
await conn.login('username', 'password');
const testClasses = ['MyTestClass'];
const result = await conn.tooling.runTestsAsynchronous(testClasses);
console.log(result);
}
runApexTests();
Retrieve Test Results
This feature allows you to retrieve the results of previously run Apex tests. The code sample demonstrates how to log in to Salesforce and query the ApexTestResult object to get test results.
const { Connection, QueryResult } = require('@salesforce/apex-node');
async function getTestResults() {
const conn = new Connection({ loginUrl: 'https://login.salesforce.com' });
await conn.login('username', 'password');
const query = 'SELECT Id, Status, ApexClassId FROM ApexTestResult';
const result = await conn.tooling.query(query);
console.log(result.records);
}
getTestResults();
Jsforce is a powerful library for Salesforce API integration in JavaScript. It provides a wide range of functionalities including data manipulation, metadata API access, and Apex execution. Compared to @salesforce/apex-node, Jsforce offers a broader set of features for interacting with Salesforce, but may require more configuration for specific Apex-related tasks.
Typescript library to support the Salesforce Extensions for VS Code and the Apex Plugin for the Salesforce CLI.
Note: Please report any issues via the Issues tab.
If you're interested in contributing, take a look at the CONTRIBUTING guide.
If you're interested in building the plugin and library locally, take a look at the Developing doc.
FAQs
Salesforce JS library for Apex
We found that @salesforce/apex-node demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 48 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.