Research
Security News
Threat Actor Exposes Playbook for Exploiting npm to Build Blockchain-Powered Botnets
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
@salesforce/source-deploy-retrieve
Advanced tools
JavaScript library to run Salesforce metadata deploys and retrieves
@salesforce/source-deploy-retrieve is an npm package that provides tools for interacting with Salesforce metadata. It allows users to retrieve, deploy, and manage Salesforce source code and metadata from a Salesforce org. This package is particularly useful for developers and administrators who need to automate and streamline their Salesforce development and deployment processes.
Retrieve Metadata
This feature allows you to retrieve metadata from a Salesforce org. The code sample demonstrates how to use the SourceClient to retrieve metadata for a specific package and save it to an output directory.
const { SourceClient } = require('@salesforce/source-deploy-retrieve');
const client = new SourceClient();
client.retrieve({
packageNames: ['MyPackage'],
output: './outputDir'
}).then(result => {
console.log('Retrieve Result:', result);
}).catch(error => {
console.error('Error:', error);
});
Deploy Metadata
This feature allows you to deploy metadata to a Salesforce org. The code sample demonstrates how to use the SourceClient to deploy metadata from a specified source directory.
const { SourceClient } = require('@salesforce/source-deploy-retrieve');
const client = new SourceClient();
client.deploy({
sourcePath: './sourceDir'
}).then(result => {
console.log('Deploy Result:', result);
}).catch(error => {
console.error('Error:', error);
});
Convert Metadata
This feature allows you to convert metadata between different formats. The code sample demonstrates how to use the SourceClient to convert metadata from a source directory to an output directory.
const { SourceClient } = require('@salesforce/source-deploy-retrieve');
const client = new SourceClient();
client.convert({
sourcePath: './sourceDir',
outputDir: './outputDir'
}).then(result => {
console.log('Convert Result:', result);
}).catch(error => {
console.error('Error:', error);
});
The sfdx-cli package is the Salesforce CLI, which provides a powerful set of tools for managing Salesforce orgs, including retrieving and deploying metadata. It offers a broader range of functionalities compared to @salesforce/source-deploy-retrieve, including org management, data manipulation, and more.
The jsforce package is a JavaScript library for Salesforce API integration. It provides tools for interacting with Salesforce data and metadata, including retrieving and deploying metadata. While it offers similar functionalities to @salesforce/source-deploy-retrieve, it also includes capabilities for working with Salesforce data and performing SOQL queries.
The force-dev-tool package is a command-line tool for Salesforce development. It provides functionalities for retrieving, deploying, and managing Salesforce metadata. It is similar to @salesforce/source-deploy-retrieve but is more focused on providing a command-line interface for Salesforce development tasks.
Typescript Library to support the Salesforce extensions for VS Code.
Note: This library is in beta and has been released early so we can collect feedback. It may contain bugs, undergo major changes, or be discontinued.
Clone the project and cd
into it. Ensure you have Yarn installed and run the following to build:
yarn build
To test the library in another local module, you can link it to such module so any changes that are built will be automatically present without reinstalling:
yarn local:link /path/to/other/project
to unlink the library:
yarn local:unlink /path/to/other/project
yarn test
runs the suite and outputs code coverage as a text summary
The library can also be installed to another local project as a regular NPM module. This is useful for manually testing the package that will be deployed to NPM. Use this instead of the linking process that's described under Development to QA changes before they are published:
yarn local:install /path/to/other/package
FAQs
JavaScript library to run Salesforce metadata deploys and retrieves
The npm package @salesforce/source-deploy-retrieve receives a total of 133,569 weekly downloads. As such, @salesforce/source-deploy-retrieve popularity was classified as popular.
We found that @salesforce/source-deploy-retrieve demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.