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 🙏

© 2025 – Pkg Stats / Ryan Hefner

ssdm

v0.1.3

Published

Stupid Simple Dotfiles Manager

Readme

SSDM - Stupid Simple Dotfiles Manager

Build Status Coverage Status Join the chat at https://gitter.im/gjbianco/ssdm

SSDM uses git to track your dotfiles straight from your home directory (or wherever you want it to live) without interference. You can leave your dotfiles right where they are and just use SSDM to back them up.

SSDM is a helper tool for the similarly named dotfiles management technique. If you ever want to stop using SSDM with your dotfiles, then you can just stop using it! You can continue to use the technique manually or without installing SSDM (e.g. on other machines).

Technique

SSDM uses git by managing the naming of the .git directory and .gitignore file. When not directly being called, .git gets renamed to .ssdm and .gitignore gets renamed to .ssdmignore. This allows us to store the actual git repo wherever we want without worrying about conflicting subdirectories.

On top of that, the .gitignore (.ssdmignore) file uses a whitelist technique to make sure git only deals with files and directories specifically listed. e.g.

*
!.bashrc
!.vimrc
!.vimrc

Installation

SSDM is written in Node and can be installed with npm i -g ssdm. This will install it globally and you can now run ssdm like any other command. Run it without arguments or with the -h option to get usage information.

Usage

SSDM uses a set of basic subcommands that act as basic macros to deal with the underlying git repository. At its core, SSDM will handle renaming .git and .gitignore to .ssdm and .ssdmignore, respectively.

Every command (other than init) run inside of a "context" where repository and directory and ignore file have the real "git version" of the names. Since this step is necessary in order to have git actually deal with the repo as a repo, this means that SSDM has to refuse dealing with anything other than .ssdm and .ssdmignore. This is so it does not accidentally mess with a non-SSDM git repository.

The currently supported commands are as follows:

init

This command initializes a new SSDM (git) repository. It also adds a basic ignore file (using the whitelist technique).

Example:
ssdm init

addfile

Add a file pattern to the whitelist. Subsequent commands will now deal with files matching this pattern.

Example:
ssdm addfile .bashrc

commit

Make a new commit, automatically adding all new and/or changed files that match the whitelisted patterns.

Example:
ssdm commit

git

Call a git command from within the SSDM context.

Example:
ssdm git push origin master