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

freelens-gateway-extension

v0.1.0

Published

Freelens extension for Kubernetes Gateway API and NGINX Gateway Fabric resources

Downloads

104

Readme

Freelens Gateway Extension

A Freelens extension that provides UI support for Kubernetes Gateway API resources and NGINX Gateway Fabric policies.

Supported Resources

Gateway API (gateway.networking.k8s.io)

  • Gateway - Gateway API gateway resources
  • HTTPRoute - HTTP routing rules attached to gateways

NGINX Gateway Fabric (gateway.nginx.org)

  • ClientSettingsPolicy - Client connection behavior settings
  • NginxGateway - NGINX Gateway Fabric configuration
  • NginxProxy - NGINX proxy settings
  • SnippetsFilter - NGINX config snippet filters (route-level)
  • SnippetsPolicy - NGINX config snippet policies (attached via targetRef)
  • UpstreamSettingsPolicy - Upstream/backend connection tuning

Installation

From Release

  1. Download the latest .tgz file from the Releases page
  2. Open Freelens
  3. Navigate to Extensions (File > Extensions)
  4. Drag and drop the .tgz file into the install area, or paste the absolute path to the file
  5. Click Install

From Source

Requires Node.js >= 22 and pnpm.

git clone https://github.com/ganey/freelens-gateway-extension.git
cd freelens-gateway-extension
pnpm install
pnpm pack:dev

This produces a .tgz file in the project root. Install it in Freelens using the steps above.

Prerequisites

The extension requires the relevant CRDs to be installed on your cluster.

Gateway API CRDs

kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v1.2.1/standard-install.yaml

NGINX Gateway Fabric CRDs

NGINX Gateway Fabric CRDs are installed as part of the NGINX Gateway Fabric installation. Refer to the official documentation for setup instructions.

Features

  • Sidebar navigation with two menu groups: Gateway API and NGINX Gateway
  • List views with sortable columns and search for all 8 resource types
  • Detail panels shown when viewing individual resources, displaying spec and status information

Development

pnpm install          # Install dependencies
pnpm build            # Type-check + build
pnpm build:force      # Build without type-check
pnpm type:check       # TypeScript type checking only
pnpm lint:check       # Run biome + prettier checks
pnpm lint:fix         # Auto-fix lint issues
pnpm clean            # Remove build output

License

MIT