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

skivvy

v1.0.10

Published

Modular task runner for reusable build systems

Downloads

45

Readme

Skivvy

npm version Stability Build Status

Modular task runner for reusable build systems

Installation

Install Skivvy globally:

npm install -g skivvy

This will make the skivvy command globally available. See the list of available commands.

What is Skivvy?

Skivvy is a task runner. It comes with a simple command-line tool that lets you instantly launch your project's tasks without ever needing to write any plumbing code. Skivvy's task packages make it a piece of cake to add to your project's repertoire of available tasks, and allow you to create truly modular, reusable build systems.

Skivvy will only go as far as launching your tasks though: what you choose to do within the tasks themselves is completely up to you. You can write tasks that scaffold components, switch branches, file issues, deploy builds, send emails… the sky's the limit. Under the hood, Skivvy tasks are just plain functions, so you're free to implement them however you like.

The Skivvy workflow

There are 4 steps in the Skivvy workflow:

  1. Initialize a project: skivvy init
  2. Install task packages: skivvy install <package>
  3. Configure task packages: skivvy config [options]
  4. Run tasks from the installed packages: skivvy run <task>

...this gives you a robust and highly configurable task system, all without having to write a single line of code. Take a look at Skivvy in action:

asciicast

How does it work?

  • Off-the-shelf task packages can be installed alongside your project-specific tasks
  • All tasks are automagically accessible from the command-line as soon as they are installed
  • Tasks can be configured with the command-line tool, or by hand-editing JSON if preferred
  • Custom tasks can easily be packaged into modules and shared across multiple projects

The killer feature: task packages

Skivvy tasks can be organized into modules, or packages. This allows all the heavy lifting to be handled by configurable helper packages whose internals are completely isolated from the main application – kind of like Docker, but for build systems. Packages are intended to be reused across many different projects, and range from generic utilities (e.g. skivvy-package-copy), to heavily opinionated build packs (e.g. a package to scaffold/test/build/deploy an HTML boilerplate app in your company's house style).

Within a Skivvy project, as soon as you install an off-the-shelf task package, all of its tasks are instantly accessible from the command-line, without you having to write any code whatsoever. Tasks can be configured either via the command-line tool or by hand-editing a simple JSON configuration file. This task configuration is loaded automatically on a per-task basis, so even a very intricate task system should only need a small amount of simple code to link packages together.

Packages can easily be combined into other packages, allowing you to compose elaborate task systems with as little code as possible. Using a modular task system ensures that your build setup won't sprawl out of control as a project grows over time, and allows you to mix and match task modules across different projects without any fuss.

How does Skivvy relate to gulp/Grunt/etc?

Check out the Skivvy for gulp/Grunt users guide to see what sets Skivvy apart from the other tools on offer.

Usage instructions: Hello World app

  1. Initialize a Skivvy project in a new folder:

    mkdir example-app && cd example-app
    skivvy init

    Seeing as this directory has not yet been initialized as an npm module, Skivvy will automatically run the npm init command and guide you through the process.

  2. Add the hello-world package to the current project:

    skivvy install hello-world
  3. List the tasks installed by the hello-world package:

    skivvy list

    This will output something like the following:

    example-app@1.0.0
    └─┬ hello-world@1.0.0
      ├── greet - Greet the user
      └── welcome - Welcome the user

    This means that within our project we're now able to use the hello-world::greet and hello-world::welcome tasks, seeing as they were both included in the hello-world package.

  4. Configure the hello-world package:

    skivvy config set --package=hello-world --config.user=Skivvy

    This sets the user configuration variable within the hello-world package

  5. Run the hello-world::greet and hello-world::welcome tasks:

    skivvy run greet # Outputs: "Hello, Skivvy!"
    skivvy run welcome # Outputs: "Welcome to Skivvy!"

More information

Take a look at the Getting started with Skivvy guide and the list of available commands to get a thorough understand of how it all works. Once you've had a skim through that, you should be all set to dive in.

There are already a bunch of pre-built packages to suit most simple projects. All the same, if you want to go off-piste and roll your own tasks, luckily that's as easy as writing a single JavaScript function.

Good luck Skivvying!