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

lmfao

v1.0.32

Published

Your NPM-based chat app for the terminal

Readme

🛠 Installation & Set Up

  1. Install the lmfao CLI

     npm install -g lmfao
  2. Start the application by running lmfao in your terminal

     lmfao

🐉 Current Features:

  • Users can sign up and create an account using their email and a username of their choice.
  • Authenticated users can see list of public channels that they can join and use to chat with their friends and coworkers. Each channel can hold up to 1,000 concurrent users.
  • Users can search for existing private channels. If a private channel is found with a matching name, the user can join the channel by entering the password associated with the channel.
  • Users can create their own public channels, which will then be displayed with the list of existing public channels.
  • Users can create their own password-protected channels and ensure that they can talk with their friends in secret if the need arose.

🚀 Resources & How to

  • Before anything, two terminal windows or panes need to be used in order to chat through the lmfao CLI.
  • For a better user experience, I personally recommend downloading iTerm2, which is more customizable. In this case, running command + click on iTerm2 will allow you to split the terminal window into two panes horizontally, which will enable you to send message to one channel from one pane and see all incoming messages from the other pane and which would look like this.

Now, in order to get started:

  1. First sign up or login using your existing credentials.

  2. Once you get to the "Main menu" page, you'll have the option to join existing public channels, create a new public or private password-protected channel, or search through the list of existing private channels - which would then ask you to input the private channel's password, assuming that the private channel exists

  1. Let's say you pick the first option, you'll find yourself choosing from a display of all the existing public channels and their live number of participants
  1. Assuming that you choose the channel named asap_mob, you'll then be redirected to the final page below.
  1. In one of your windows or panes, pick Connect to channel feed, which will turn that terminal window / pane into an interface that'll display incoming messages.
  1. In the other window or pane, pick Message on channel, which will display an interface that'll allow you to send a message to the specified channel.
  1. At this point you should have two windows with the two interfaces below:
  1. Or two panes / sections within one window
  1. In order to join another channel, you can type 'exitexit' in both windows or panes, which will bring you to the main menu. You can follow the same steps in order to join another public or private channel, or in order to create a new channel.

🚨 Technical Details

  • Firebase is used for Authentication and Firestore is used as a NoSQL Database
  • The purpose of this application is to allow people to chat without worrying about their conversations being tracked
  • As a result, no conversations are being saved.
  • The emails are only stored in order to provide validation down the line
  • Phone numbers are stored so that group members receive text messages when someone enters their private chat.
  • Other than that, no data is being tracked. No IP address, no keywords, nothing.
    • Disclaimer: IP addresses might be used down the line and stored in local computer storage or cloud storage (AWS or Google Cloud) in order to provide faster login for the users when they run lmfao

🥊 Remaining to do:

  • [ ] Implement end to end encryption
  • [ ] Allow users to sign in using their username
  • [ ] Use local storage or cloud storage to allow users to sign in automatically if user is already signed in one terminal window / pane
  • [ ] See if you can automatically split the terminal into certain proportions (like a multiplexer) when user signs in, in order to provide better UX
  • [ ] Re-implement text notifications for private chat entry