npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

simple-sf-cli

v0.3.0

Published

A simple sf cli to deploy things faster

Downloads

463

Readme

Simple SF CLI

Simple SF CLI is a Node.js-based command-line tool designed to simplify the conversion of Salesforce DX (SFDX) source format to Metadata API (MDAPI) format, zip the contents, and deploy them to Salesforce.


Features

  • Convert SFDX source format to MDAPI format.
  • Generate a package.xml for deployment.
  • Exclude specific metadata components from deployment.
  • Zip the converted MDAPI directory.
  • Deploy zipped content to Salesforce using SOAP API.

Package Details

| Detail | Value | |-----------------------|---------| | Package Size | 9.6 kB | | Unpacked Size | 15.7 kB |

https://www.npmjs.com/package/simple-sf-cli


Why Use Simple SF CLI?

  • No Salesforce CLI or Plugins Required: Unlike other tools, Simple SF CLI does not rely on Salesforce CLI (sfdx), Salesforce GitHub Deploy (sgd), or any other Salesforce-related plugins. Everything is customized and built from scratch.
  • Fast Installation: The entire package can be installed in 3-5 seconds in GitHub Actions, making it ideal for CI/CD pipelines.

Installation

npm install -g simple-sf-cli

Usage

After installation, you can use the CLI tool as follows:

Basic Command

simple-sf-cli --source <sourceDir> --output <outputZip>

Exclude Specific Metadata Types

You can exclude specific metadata types from the deployment using the --exclude option:

simple-sf-cli --source <sourceDir> --output <outputZip> --exclude NamedCredential,Profile

Environment Variables

Ensure you have the following environment variables set in your .env file:

INSTANCE_URL=https://your-salesforce-instance.salesforce.com
ACCESS_TOKEN=your_salesforce_access_token

Example

simple-sf-cli --source ./experiment/force-app/main --output ./mdapi_output/deployment.zip --exclude Profile

This command will convert the SFDX source located in ./experiment/force-app/main to MDAPI format, exclude Profile metadata, zip the contents, and save the ZIP file to ./mdapi_output/deployment.zip.


License

This project is licensed under the MIT License - see the LICENSE file for details.