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

voog-kit

v0.3.8

Published

Developer toolkit for Voog

Readme

#Voog Developer Toolkit

This Node version of the previous Developer Toolkit aims to be functionally identical, but more approachable to modern front-end developers. Powered by kit-core, the developer toolkit library.

Prerequisites

At least Node 4.x and NPM 2.14.x.

Installation

$ npm install -g voog-kit

This makes the voog-kit main script globally available. The script is named "voog", but also aliased to "kit".

Voog-kit works with configuration files, either in the current folder, in the home folder, or in an explicitly defined location. Without the file, there is no way to tell what site you're working on.

The global file's structure should minimally be as follows:

{
  "sites": [
    {
      "host": "< your site's primary hostname >",
      "token": "< your API token >",
      "path": "< full path to the project's working directory >"
    }
  ]
}

Usage

The main commands to use voog-kit are pull, push and watch.

Commands

pull

Pull downloads layouts and assets from your Voog site, saving them in their corresponding folders:

  • layouts/ and components/ for markup files (saved with .tpl extension)
  • images/ for image files (.jpg, .png etc.)
  • javascripts/ for .js files
  • stylesheets/ for .css files
  • assets/ for everything else

push

Push uploads the files to your site, overwriting the previous version. You can provide relative paths as specific files to push, e.g kit push layouts/blog.tpl, which pushes only the blog layout.

add

Add creates a new file and uploads it to the site. For example, kit add javascripts/main.js creates an empty "main.js" file and pushes it to the site.

remove

Remove deletes the file, locally and from the site as well. For example, kit remove javascripts/main.js deletes the "main.js" file and removes it from the site.

watch

Watch starts a file monitor that watches the six folders for any changes: creating, modifying and deleting files also uploads or removes the changed files.

sites

Sites lists all sites that are defined in the currently active configuration file.

Options

Explicit options are always preferred over the configuration file and the configuration file will be updated every time an action is performed with new options. For example, when using voog push --overwrite the first time, "overwrite": true is added to the current site's configuration block and used for later actions automatically without having to provide it every time.

List of possible command-line options:

  • host — your site's primary hostname
  • token — your API token
  • overwrite — override the write-protection for assets and images. Old files will be deleted and replaced with new files.
  • protocol — specify the protocol that's used for the API requests (e.g --protocol=https)
  • configPath — full path to a specific configuration file
  • global — use global configuration file (/Users/<username>/.voog for Unix systems, C:\Users\<username>\.voog for Windows etc.)