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

devtoolz

v1.3.1

Published

A collection of scripts to assist developers with source code management.

Downloads

11

Readme

devtoolz

A collection of command line utilities to assist developers with repetitive tasks.

Getting Started

The first thing you will need to do to get started with devtoolz is to install it on your machine. This can be accomplished by downloading the package and installing manually or using npm package manager. Using the npm package manager is the preferred method of installation.

Installing Manually

Manual installation is fairly straight forward. The following steps should get you setup.

  1. Download the latest tagged release here.
  2. Uncompress the downloaded zip|tar file.
  3. Using a terminal or command prompt, go into the uncompressed directly. For example, if you downloaded tag 1.2.5, then you will see a folder called .\devtoolz-1.2.5.
  4. Install the depended npm packages by running npm install.
  5. Finally, install devtoolz itself globally so the commands are available from anywhere on your machine.

Package Installation

  1. Using a terminal or command prompt, run the following command:
npm install -g devtoolz

Config File Location

Devtoolz relies heavily on the config.json file. If you installed devtoolz manually, you will find a sample file in your installation folder. If you installed via npm pakcage manager, youl will need to create a config.json file.

When you run a command, devtoolz looks to your current folder for a config.json file. If it cannot find one in your current folder, it will throw an error. Optionally, you can provide a path to your config file.

Optional config file path paramter

--config /path/to/config.json

Probably the most convenient location is to place your config.json file in your home directory or an easily accessible one. If your terminal always starts off in your home directory, place the file there. If your command prompt always launches at C:\ then place it there. This way when you open up a terminal or command prompt, it is accessible. And if you are in some other location, an easy reference looks like this:

--config ~/config.json

Config File Setup

The first setting you need to configure is the svnRepos value which should point to your SVN repository. Other config sections are specific to certain commands.