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

distributewp-cli

v0.1.1

Published

Command line interface that helps with the deployment of plugins on WordPress.org

Downloads

11

Readme

distributewp-cli

Command line interface that helps with the deployment of plugins on WordPress.org

oclif Version Downloads/week License

How it works

DistributeWP deploys files and folders on your computer to the WordPress.org plugin's SVN repository. With this tool you can release new versions of plugins, update only the assets folder or update only the readme.txt file.

DistributeWP requires .json file in your plugin's folder which contains all the settings required for deployment. This file can be created by running command distribute-wp init once you've answered a few questions, the configuration file will be automatically created for you.

The CLI will ask you the following questions:

  • What's the slug of your plugin?
  • What's the folder you wish to deploy?
  • Do you wish to deploy plugin's assets too?
  • What's the folder where assets are stored?

Deployment of new releases works by uploading the content of the folder you've specified when answering the 2nd configuration question.

Requirements

  • SVN on your computer.
  • Preapproved plugin on wordpress.org
  • Node.js

Installation

npm install -g distributewp-cli

Usage

$ npm install -g distributewp-cli
$ distribute-wp COMMAND
running command...
$ distribute-wp (-v|--version|version)
distributewp-cli/0.1.1 darwin-x64 node-v12.8.1
$ distribute-wp --help [COMMAND]
USAGE
  $ distribute-wp COMMAND
...

Commands

distribute-wp assets

Updates the plugin's assets on WordPress.org.

USAGE
  $ distribute-wp assets

See code: src/commands/assets.js

distribute-wp deploy

Release a new version of a WordPress plugin.

USAGE
  $ distribute-wp deploy

See code: src/commands/deploy.js

distribute-wp help [COMMAND]

display help for distribute-wp

USAGE
  $ distribute-wp help [COMMAND]

ARGUMENTS
  COMMAND  command to show help for

OPTIONS
  --all  see all commands in CLI

See code: @oclif/plugin-help

distribute-wp init

Configure deployment from the current folder.

USAGE
  $ distribute-wp init

See code: src/commands/init.js

distribute-wp readme

Updates the readme.txt file on WordPress.org.

USAGE
  $ distribute-wp readme

See code: src/commands/readme.js