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

ssg-js

v0.1.5

Published

Secure Shell GUI

Downloads

69

Readme

SSG - Secure Shell GUI

Background

This program shows a pretty GUI for all the SSH server connections found in your SSH config file. It also allows you to connect to them. Simply type to filter and use the arrow keys to select. Press enter to open the SSH connection.

You must have an existing SSH Configuration file for this application to be useful. See examples here

By default, this application will look for your config file in ~/.ssh/config

https://github.com/nebev/ssg-js

As of Version 0.1.5, ssg will also try to invoke the aws command on your local machine. If you happen to have configured your aws cli to output json (default) then you will also get a list of all your AWS servers currently running. SSG will then give you the opportunity to fill in a username and appropriate PEM. In upcoming versions, there may be an option to save this to your SSH config file.

https://github.com/nebev/ssg-js

Installation

  1. Install using npm install -g ssg-js
  2. Run ssg or alternatively ssg /path/to/ssh/config/file
  3. Enjoy all your visualised server connections.

How to use

Run ssg from the command line. All server connections in your config file will appear. You can filter them by typing. Filtering works on Description, Tags and server names.

Select the desired server you want to connect to by using the arrow keys. When selected, press the ENTER key. Alternatively, press ESC if you wish to exit.

Javascript Usage

	var ssg = require('ssg-js');

	// Use the default ~/.ssh/config file
	ssg.run();

	// Or specify a custom config file path
	ssg.run('/path/to/my/ssh/config');

Adding Descriptions and Tags

As SSH config doesn't come with an ability to add a description or tags, you must put in lines similar to the following in order to get the description and tag fields populated.

	# @description My awesome description
	# @tags tags separated by some spaces
	Host uniquehostname
		Hostname awesomehost.local
		User ubuntu

All @description and @tags must be declared before your host definition.

Generating Docs

	npm run docs

Changelog

Version 0.1.5 (2016-07-17)

  • ssg will now show AWS servers if you happen to have the aws CLI configured
  • Minor bugfixes

Version 0.1.4 (2016-01-21)

  • NodeJS Minimum engine version added (Issue #4)
  • Now hosts separated by spaces will be displayed on dedicated lines (Issue #3)

Version 0.1.3 (2016-01-06)

  • Updated documentation. Screenshots etc.

Version 0.1.2 (2016-01-04)

  • JS Docs
  • Updated Readme (ssg-js rather than ssg)
  • Colours
  • Ability to specify custom config file

Version 0.1.1

  • Minor Bugfixes

Version 0.1.0 (2015-15-21)

  • Initial release