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

@jfvilas/kwirth-external

v0.5.26

Published

An external option for deploying Kwirth on a server (not inside Kubernetes) for running as a proxy or server access (for Backstage, for instance)

Readme

Kwirth External

This package s a bundled Kwirth installationcreated for targeting these obejctives:

  • Local installation, no need to install any Kwirth artifact on your Kubernetes cluster.
  • Non-docker support, no need to use docker locally for running Kwirth.
  • Independent front/back, you can start Kwirth with or without front. Since Kwirth architecture si SPA plus API, if you only need the API you can start Kwirth backend for using your own frontend, like the Backstage plugins we usually develop and evolve with every new Kwirth version.

Install

Since this artifact is an npm package you need to previously have a NodeJS installed on your Windows/Linux/mac

First install Kwirth:

$ npm i -g @jfvilas/kwirth-external

Once installed (globally with '-g' optin) just launch it to check if everything is OK:

$ kwirth-external --version

You should see a version number.

Command Line options

If you enter 'kwirth-external --help' you should see an explanatio with all the options of Kwirth External:

$ kwirth-external --help 
Usage:
  $ kwirth-external

Commands:
  start   Start server
  apikey  Create an API Key

For more info, run any command with the `--help` flag:
  $ kwirth-external start --help
  $ kwirth-external --help
  $ kwirth-external apikey --help

Options:
  -c, --context <string>          Context to load (default: )
  -k, --apiKey                    Context to load (default: false)
  -p, --port <number>             Server port (default: 3883)
  -r, --rootpath <string>         Root path (default: )
  -k, --masterkey <string>        Master key (default: Kwirth4Ever)
  -t, --front                     Enable front SPA serving (default: false)
  -f, --forward                   FORWARD feature (default: false)
  -i, --metricsinterval <number>  Seconds between metrics (default: 15)
  -cl, --channellog               Channel LOG (default: true)
  -cm, --channelmetrics           Channel METRICS (default: true)
  -ca, --channelalert             Channel ALERT (default: true)
  -ce, --channelecho              Channel ECHO (default: true)
  -co, --channelops               Channel OPS (default: true)
  -ct, --channeltrivy             Channel TRIVY (default: true)
  -cy, --channelmagnify           Channel MAGNIFY (default: true)
  -cp, --channelpinocchio         Channel PINOCCHIO (default: true)
  -v, --version                   Display version number
  -h, --help                      Display this message

Actions

Start (start)

Just start the server.

API Key (apikey)

Create a 1-day API Key and exit (acts like a normal command: creates teh API key, show it, end exit)

Switches

Context (-c, --context)

Set the kubeconfig context to load. If this switch is not present, Kwirth will connect to Kubernets cluster that is 'current' on your kubeconfig.

API Key (-k, --apiKey)

Port (-p, --port)

Set the port to listen from, for example 3090, and Kwirth will be serverd from 'http://your.host.name:3090'

Root path (-r, --rootpath)

Set the root path where Kwirth will listen, for example '/observer/kwirth', and Kwirth will be serverd from 'http://your.host.name/observer/kwirth'

Marter Key (-k, --masterkey)

Set the master key for enciphering Bearer tokens.

Front (-t, --front)

Enable/Disable the front. If you just need the server with the API don't use this option and the servier will start just an API server.

Forwarding requests (-f, --forward FORWARD feature (default: false)

Enable or disable the feature of forwairding traffic to Pods or Services.

Metrics Intreval (-i, --metricsinterval Seconds between metrics (default: 15)

Set the number of seconds to wait between two consecutive Kubelet metrics read.

Channel Log (-cl, --channellog Channel LOG (default: true)

Enable/Disable the Log channel.

Channel Metrics (-cm, --channelmetrics)

Enable/Disable the Metrics channel.

Channel Alert( -ca, --channelalert)

Enable/Disable the Alert channel.

Channel Echo(-ce, --channelecho)

Enable/Disable the Echo channel.

Channel Ops (-co, --channelops)

Enable/Disable the Ops channel.

Channel Trivy ( -ct, --channeltrivy)

Enable/Disable the Trivy channel.

Channel Magnify (-cy, --channelmagnify)

Enable/Disable the Magnify channel.

Channel Pinocchio (-cp, --channelpinocchio)

Enable/Disable the Pinocchio channel.

-h, --help

Show Kwirth External command help.

-v, --version

Show Kwirth version. Version number shown is the one of Kwirth Extgernal wrapper.