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

tabby-ssh-config-import

v1.0.1

Published

An AI-generated plugin for Tabby terminal that filters open tabs by profile groups.

Downloads

243

Readme

tabby-ssh-config-import

An AI-generated Tabby terminal plugin for bulk importing SSH profiles from ~/.ssh/config into Tabby's profile list.

Features

  • Reads hosts from Tabby's built-in SSH config importer (~/.ssh/config)
  • Shows only hosts that are not yet saved as Tabby profiles (deduplication by host address)
  • Editable Hostname and IP/Host fields per row before importing
  • Group selector with option to create a new group inline
  • Icon picker with recently used icons, manual name input, and a full FontAwesome Free gallery with search
  • Color picker with rainbow presets, black & white, and custom HEX input
  • Checkboxes for selecting individual hosts; Add selected and Add all buttons
  • After import, imported rows are removed from the list and a success message is shown

Screenshots

The plugin adds a new SSH Config Import entry to the Settings sidebar (under Profiles & connections).

Installation

From dist (pre-built)

  1. Create the plugin directory:
    %APPDATA%\tabby\plugins\node_modules\tabby-ssh-config-import\
  2. Copy dist\ folder and package.json into it.
  3. Restart Tabby.

From npm (when published)

Open Tabby → Settings → Plugins, search for tabby-ssh-config-import and install.

Building from source

Prerequisites

  • Node.js 18+
  • npm 9+

Steps

# 1. Clone or download the source
cd tabby-ssh-config-import

# 2. Install dependencies
#    --legacy-peer-deps is required because tabby-settings pulls in Angular 15
#    peer deps that conflict with the locally resolved TypeScript version.
#    This is safe: all Tabby packages are externals and are not bundled.
npm install --legacy-peer-deps

# 3. Build
npm run build

The output will be in dist/index.js.

Project structure

tabby-ssh-config-import/
├── src/
│   ├── index.ts             # NgModule — registers the settings tab provider
│   ├── settingsTab.ts       # SettingsTabProvider — adds the sidebar entry
│   ├── importComponent.ts   # Main Angular component with all UI logic
│   └── faIcons.ts           # FontAwesome Free 6 icon name list (~230 icons)
├── dist/                    # Build output (generated)
├── package.json
├── tsconfig.json
└── webpack.config.js

How it works

Tabby already parses ~/.ssh/config via its built-in OpenSSHImporter and exposes the hosts as builtin profiles in the group "Imported from .ssh/config". This plugin reads those profiles via ProfilesService.getProfiles({ includeBuiltin: true }), filters out any whose options.host is already present among saved (non-builtin) SSH profiles, and presents the remainder in an editable table for bulk import.

All Tabby packages (tabby-core, tabby-settings, @angular/*) are declared as webpack externals and are not bundled — they are provided at runtime by the host Tabby application.

License

MIT