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 🙏

© 2024 – Pkg Stats / Ryan Hefner

easyssh

v1.0.7

Published

Tool for adding new ssh to config file

Downloads

9

Readme

easySSH

Simple NPM CLI tool for adding ssh credentials to your config file for easier access to your servers.

CLI

$ npm install -g easyssh

$ easyssh

Usage

Once you start easyssh, you will be asked to create a nickname for your server. This should be a short word or phrase that describes the server. It could be "dev" "production" "clientName" etc.

You will then be required to enter the HostName which is either the IP or name of vm your sshing into

Next you'll be prompted for the username

One of the easiest ways to ssh into a server is by creating a private key, then moving it to the authorized keys location on the server. To create a key enter the following in the terminal

ssh-keygen -t rsa

Once the key has been created, enter the following into the terminal with your credentials to move the private key to the server

cat ~/.ssh/id_rsa.pub | ssh user@hostname 'cat >> .ssh/authorized_keys'

If you do not have the ability to add the key to the server, skip this step, leave the following question blank and go to the next question. If you do have access, type or paste the key location such as the one above '~/.ssh/id_rsa.pub'

If you did not have access to the server and were just givin username & password or do not want to use the identity file, type yes in the following prompt.

In some cases you may need to specify which port to access the server. If so, enter the port into the following prompt, or leave blank if not necessary.

That's all. Now depending on what you used for a nickname for your server, type

$ ssh server-nickname

and you're in. If you followed the above steps and entered the information correctly you shouldn't have any problems. Future release of easyssh will allow for editing previously setup ssh configurations. If for some reason it doesn't work, type

$ vi ~/.ssh/config

and double check the information entered in your config file.