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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@b64hub/sfpm

v0.1.0

Published

Salesforce Package Manager

Readme

SFPM — Salesforce Package Manager

  ███████╗███████╗██████╗ ███╗   ███╗
  ██╔════╝██╔════╝██╔══██╗████╗ ████║
  ███████╗█████╗  ██████╔╝██╔████╔██║
  ╚════██║██╔══╝  ██╔═══╝ ██║╚██╔╝██║
  ███████║██║     ██║     ██║ ╚═╝ ██║
  ╚══════╝╚═╝     ╚═╝     ╚═╝     ╚═╝

by developers, for developers

tests npm node pnpm license Conventional Commits

Status: early-stage (v0.1.0, "Seedling") — APIs and commands may change.

What is SFPM?

SFPM is a CLI and toolchain that brings a modern package-manager workflow to Salesforce metadata. It builds Salesforce packages into versioned artifacts, installs or deploys them across orgs in dependency order, and runs lifecycle hooks for the metadata types Salesforce doesn't handle cleanly out of the box (profiles, permission sets, picklists, flows, managed-package settings, and more).

Think npm, but the artifacts are unlocked / second-generation Salesforce packages instead of JavaScript modules.

Why use it?

  • Dependency-aware orchestration — build and deploy graphs of packages with one command instead of hand-rolling order.
  • Async validation watchers — kick off long unlocked-package builds and check back later with sfpm build status.
  • Lifecycle hooks — pre/post-deploy logic for the metadata Salesforce makes painful: profiles, perm sets, picklists, flows, LWC, managed packages, Browserforce settings.
  • Scratch org pools — provision and reuse warm scratch orgs to cut feedback time.
  • Data seeding — first-class SFDMU integration for reference data.
  • CI-ready — every flow that runs locally also ships as a GitHub Action.
  • Turborepo-friendly--turbo flag on build / deploy / install for single-package mode under external orchestrators.

Repository layout

This is a pnpm + Turborepo monorepo:

| Package | Purpose | | --------------------------------------- | -------------------------------------------------------------------------------- | | @b64hub/sfpm-cli | The sfpm CLI (oclif). | | @b64hub/sfpm-core | Build/install orchestrators, artifact registry, lifecycle engine, project model. | | packages/actions | GitHub Actions wrapping the same flows for CI. | | packages/hooks | Pre/post-deploy hooks for tricky metadata. | | packages/orgs | Scratch org and pool management. | | packages/sfdmu | SFDMU data builder/installer integration. |

Requirements

  • Node.js >= 18
  • pnpm >= 8 (do not use npm or yarn for the workspace)
  • Salesforce CLI (sf) authenticated to your DevHub and target orgs
  • Git

Installation

Install the CLI globally with the package manager of your choice. pnpm is recommended — it matches the rest of the project's tooling — but npm and yarn work too.

# pnpm (recommended)
pnpm add -g @b64hub/sfpm-cli

# npm
npm install -g @b64hub/sfpm-cli

# yarn
yarn global add @b64hub/sfpm-cli

Verify it's working:

sfpm --version

Note: the "do not use npm or yarn" rule in Requirements applies to the workspace itself (resolving workspace:^ dependencies). For installing the published CLI as an end user, any package manager that talks to the npm registry is fine.

From source (for contributors)

git clone https://github.com/b64hub/sfpm.git
cd sfpm
pnpm install
pnpm build
# Run via the local binary
node packages/cli/bin/run.js --help
# Or link it for global use
pnpm --filter @b64hub/sfpm-cli link --global

Quick start

# 1. Initialize an SFPM project
sfpm project init

# 2. Bootstrap the SFPM helper packages into your DevHub/prod org
sfpm bootstrap -o my-devhub

# 3. Build a package (or several) against your DevHub
sfpm build my-package -v my-devhub

# 4. Deploy from local source to a sandbox
sfpm deploy my-package -o my-sandbox

# 5. Install a previously built artifact into a target org
sfpm install my-package -o my-sandbox

Commands

Top-level command reference — run sfpm <command> --help for full flags.

Project setup

| Command | Description | | --------------------------- | ------------------------------------------------------------------------------------------------------------ | | sfpm project init | Verify project configuration and setup requirements. | | sfpm project init turbo | Initialize a Turborepo-native workspace for SFPM packages. | | sfpm project sync | Generate sfdx-project.json from workspace package.json files. | | sfpm project version bump | Bump package versions in sfdx-project.json. | | sfpm bootstrap -o <org> | Install the SFPM helper packages (artifact tracking, pool, UI) into a DevHub. Tiers: core, pool, full. |

Build & deploy

| Command | Description | | ------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- | | sfpm build <packages…> -v <devhub> | Build one or more packages, in dependency order. Supports --async-validation, --skip-validation, --no-dependencies, --turbo, --json. | | sfpm build status | Check the status of async package validation watchers. | | sfpm deploy <packages…> -o <org> | Deploy packages from local source via source:deploy. | | sfpm deploy artifact <packages…> -o <org> | Deploy from previously built artifacts using source-deploy. | | sfpm install <packages…> -o <org> | Install packages (from artifacts) into a target org. |

Scratch org pools

| Command | Description | | --------------------- | ------------------------------ | | sfpm pool provision | Provision orgs to fill a pool. | | sfpm pool list | List orgs in a pool. | | sfpm pool fetch | Fetch an org from a pool. | | sfpm pool delete | Delete orgs from a pool. |

Configuration

SFPM reads project configuration from sfpm.config.{ts,js,mjs} at the project root (TypeScript preferred). The file is loaded with jiti, so no build step is required.

// sfpm.config.ts
import { defineConfig } from '@b64hub/sfpm-core';

export default defineConfig({
  namespace: 'myns',
  sourceApiVersion: '62.0',
  hooks: [
    // lifecycle hook plugins
  ],
  artifacts: {
    trackHistory: true,
  },
  ignoreFiles: [
    // glob patterns excluded from package builds
  ],
});

Relevant environment variables:

  • SF_DEV_HUB — default --target-dev-hub for sfpm build.
  • SF_TARGET_ORG — default --target-org for sfpm deploy / install.
  • SFPM_FORCE_BUILD — equivalent to sfpm build --force.
  • SFPM_PROJECT_DIR — override the project directory (debugging).

If no config file is present, SFPM falls back to sensible defaults driven by sfdx-project.json.

CI integration

The same orchestrators ship as GitHub Actions in packages/actions/:

Development

pnpm install      # install workspace deps
pnpm build        # turbo build all packages
pnpm watch        # rebuild on change
pnpm test         # run vitest/mocha across the workspace
pnpm typecheck    # tsc -b across the workspace
pnpm lint         # eslint
pnpm format       # prettier

Commits follow Conventional Commits (enforced by commitlint + Husky).

Contributing

Issues and PRs are welcome at https://github.com/b64hub/sfpm/issues. Please:

  1. Open an issue first for non-trivial changes.
  2. Use Conventional Commit messages (feat:, fix:, chore:, …).
  3. Run pnpm lint && pnpm typecheck && pnpm test before pushing.

License

MIT