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

webirc

v0.0.1

Published

This is a new concept for an always-on web-based IRC client. WebIRC runs as a server and is always connected to your favorite IRC networks. Seamlessly open the same session from home, work, and your mobile devices to continue exactly where you left off.

Downloads

10

Readme

WebIRC

This is a new concept for an always-on web-based IRC client. WebIRC runs as a server and is always connected to your favorite IRC networks. Seamlessly open the same session from home, work, and your mobile devices to continue exactly where you left off.

Screenshot

screenshot

Setting it up

  1. Clone the repo, cd into it.
  2. Run npm install
  3. Copy config.json.example to config.json and edit it to set the server details.
  4. If you want HTTPS (highly recommended for any real use), run ./makecert.sh and then set "port": 28443 in config.json under "https". You should also set the HTTP port to null at this point to accept only HTTPS.
  5. Copy user.json.example to users/me.json (and create the users directory). Edit the file to set your user details.
  6. Run npm start.
  7. Visit http://localhost:28080 (or whatever port you've set in config.json) to access the client.

Try logging in from your iPad at the same time and see how it runs smoothly with multiple simultaneous sessions (that's part of the goal for this project).

Features

  • Smart tab auto-complete prioritizing recent activity, including nicknames of those who recently left/quit
  • All state (chats with history, channels, servers) persists through restarts and updates
  • Paste multi-line messages
  • Connect to IRC servers using SSL
  • Connect to multiple servers at the same time
  • Webkit notifications for when your name is mentioned
  • Chatbox history for repeating/modifying commands (up/down arrow keys)
  • Clickable links in messages, including channel links
  • Timestamps on messages by hovering over them

Commands

  • /join #channel, /part #channel
  • /msg to start a private chat
  • /mode #channel to set channel modes
  • /hop to rejoin the current channel
  • /server [host] [port] [password] to connect to a new server in the current server window. Prefix the port with + for SSL.
  • /sessions to list currently logged-in sessions, or /logout [all]
  • All unrecognized commands are treated as raw and sent to the server directly. For example, you can do: /privmsg #chan :text

Adding users

  1. Make sure WebIRC is not running. (Adding users at runtime is coming soon)
  2. Copy user.json.example to users/USERNAME.json.
  3. Edit the file and set the user's details.

Not yet supported

  • File transfers
  • Scripting engine

License

MIT