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

sfmm

v1.2.0

Published

A CLI tool to manage Salesforce modules

Downloads

66

Readme

sfmm - Salesforce Module Manager

Install

with Nodejs installed, install sfmm globally:

npm i -g sfmm

For one offs, using in CI/CD workflows, etc you can use npx:

npx sfmm <action> <repo> [flags]

Usage

You can use sfmm with a GitHub author and repo:

sfmm <action> <author> <repo> [flags]

You can also use a url:

sfmm <action> <url> [flags]

Flags:

    -h, --help : Print out help message
    -v, --version : Print out install version of sfmm
    -d, --dev  : Development mode (more logs)

Actions

All actions can be used with <url> or <author> <repo>

| Action | Description | Usage | Flags | | ------ | ----------- | ----- | ----- | | add | Add modules from a remote sfdx project to your current sfdx project | sfmm add <url> [flags] | -s, --save : Save to config file -i, --ignore : Append modules to .gitignore file -a, --all : Include all files (typically not wanted) | | remove | Remove module from your current sfdx project and sfmm config file | sfmm remove <url> | (N/A) | | open | Open the project in your default browser | sfmm open <url> | (N/A) | | read | Print the project's README.md to the console | sfmm read <url> | (N/A) |

Examples

# install component to current sfdx project's lwc directory
sfmm add jsmithdev extenda-modal
# via url, install modal component to current sfdx project's lwc directory
sfmm add https://github.com/jsmithdev/extenda-modal
# install modal component to current sfdx project's lwc directory and save to config file
sfmm add jsmithdev extenda-modal --save 
# using short flags together
sfmm add jsmithdev extenda-modal -si
# remove modal component and from .sfmm config file
sfmm remove jsmithdev extenda-modal
# via url, remove modal component and from .sfmm config file
sfmm remove https://github.com/jsmithdev/extenda-modal
sfmm open <author> <repo>
sfmm read <author> <repo>

Development

# clone sfmm
git clone https://github.com/jsmithdev/sfmm.git

# enter sfmm directory
cd sfmm

# install
npm i

# optionally, link to global npm modules
npm link 

# test run linked module
sfmm add jsmithdev modal -si

# test run without linking
node index.js add jsmithdev modal -si