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

@facetlayer/goobernetes

v0.1.0

Published

Lightweight deployment tool for deploying services.

Readme

Goobernetes

Lightweight deployment tool for deploying services.

A bare-bones and less-complex alternative to Kubernetes.

Supports:

  • Deploy files with smart change detection, uploading only files that changed
  • Manage a database of deployments
  • Roll back to previous deployments

Installation

npm install
npm run build

Server Usage

Setting up the deployments dir

The server needs to have the 'deployments directory' configured. This will be the path where all incoming deploys are saved.

npx goobernetes set-deployments-dir <dir>

Setting up the secret key

The client will need to use a secret key to interact with the server.

On the server, create a new one with:

npx goobernetes create-secret-key

Running the server

Start the Goobernetes server:

npx goobernetes serve

The server will listen on port 4715 by default at http://localhost:4715/api.

Server Data Storage

The server will use your XDG home directory to store a database with deployment metadata.

Example location: ~/.local/state/goobernetes/db.sqlite

Client Usage

Setting up the secret

The client will need a secret key that was created earlier.

Add this as an environment variable GOOBERNETES_API_KEY.

Deployment

From the client, deploy a project using a configuration file:

npx goobernetes deploy <config-file>

Configuration Files

The .goob configuration file has the following format:

deploy-settings
  project-name=my-app
  dest-url=http://localhost:4715/api

include src
include web
include package.json

exclude web/node_modules
exclude web/yarn-error.log
exclude web/.next

ignore web/.next

Configuration Options

deploy-settings block

  • project-name: Name of the project being deployed
  • dest-url: Destination URL of the Goobernetes server API endpoint

File inclusion/exclusion

  • include <path>: Include files or directories in the deployment.
  • exclude <path>: Exclude files or directories from the deployment.
  • ignore <path>: Ignore a path or directory on the source side or receiving side.

Example Configuration

deploy-settings
  project-name=my-web-app
  dest-url=http://production-server:4715/api

include src
include public
include package.json
include package-lock.json

exclude src/**/*.test.js
exclude public/temp
exclude node_modules
exclude .git
exclude .env.local