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

iota-friend

v0.0.20

Published

IOTA Friend - Friendly Peer Manager

Readme

IOTA Friend - Friendly Peer Manager

IOTA Friend is built on top of IPM. IPM is great but missing many features that causes friction on the usability. One of major headache I have with IPM is users have to update iota.ini every time a peer has been added or removed and IOTA Friend resolved this issue by making the iota-fd config file as the source of the truth; which mean everytime a peer got added or removed, IOTA Friend will automatically mirror that in the config file and it will also re-add those peers back after restarting IRI.

I strongly recommand to remove all neighbours from the iota.ini and re-add them back one by one manually through the UI.


Getting Started

If you want to run IOTA Friend under a different user, then jump to Setup 2.

Setup 1

npm install -g iota-friend
#generate config file
iota-friend -i
#run iota-friend
iota-friend

Setup 2

Remember to replace <user> to a real username

# install iota-fried globally
npm install -g iota-friend

#generate config file
export IOTA_FD=/home/<user> && sudo -Eu <user> bash -c 'iota-friend -i'

Create an iota_friend.service file

Remember to replace <user> to a real username

cat << "EOF" | sudo tee /lib/systemd/system/iota_friend.service
[Unit]
Description=IOTA Friend
After=network.target

[Service]
#change the username 
User=<user>
Group=<user>
Type=simple
ExecStart=/usr/local/bin/iota-friend
Restart=on-failure
RestartSec=5s

[Install]
WantedBy=multi-user.target

EOF

Enable and start iota_friend.service

sudo systemctl daemon-reload 
sudo systemctl enable iota_friend.service
sudo systemctl start iota_friend.service

IOTA Friend dashboard

You can see the dashboard under http://<ip-address>:<port>

View log

sudo journalctl -u iota_friend -f

Update IOTA Friend

npm install -g iota-friend@latest