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

student-queue

v0.6.10

Published

student queue list backend

Downloads

41

Readme

student-queue

Application for teachers so students can add themselves to a "help" queue

More specifically, this is a webserver with a Node.js backend that uses express.js and socket.io to provide students with forms to submit requests for help that the teacher or an aide can help with. The requests appear on a password-protected teacher page in real time, preventing the need for refreshing. Requests are added to all instances of the teacher page and fulfilled requests are removed from all instances as well. This server supports having multiple help queues, for instance one for each room to be used in.

This program is in functional beta, with more features to be added before I will consider this a full "stable" release.

How to use

Use in your own server is easy, simply create an app.js file with the following content:

var Queue = require("student-queue");

var queue = new Queue({
    host: "127.0.0.1",      // The host of the database. Use 127.0.0.1 or localhost for the same machine
    database: "mydb",       // The (by default) MySQL database to use for the program
    user: "myuser",         // The database user with access to the above database
    password: "P@SSW0RD",   // The database user's password
    port: 3000              // The port for the server to be accessed on. 3000 is default
});

queue.start();

The program currently expects to be run from the root of a domain or subdomain. So www.domain.com and helpqueue.domain.com are valid, but www.domain.com/queue/ is not. Keep that in mind when setting it up. There are no promises for this to change in the future.

Site administration can be found at /admin, as in https://helpqueue.domain.com/admin The default password is password You must change this yourself before putting it into production.

Queue names must contain only alphanumeric characters: A-Z and 0-9. If there is a queue called library, its homepage can be found at /library, the student page at /library/student, and the teacher page at /library/teacher.

Planned features can be found in the Issues tab on the GitHub page by filtering for the "enhancement" label