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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@hotstaq/userroute

v0.6.16

Published

A user route for HotStaq. Allows users to be created/edited/deleted securely.

Readme

HotStaq User Route

Documentation is coming...

This supports MariaDB and PostgreSQL databases. MySQL support is experimental and most likely does not work!

For API documentation, please see the OpenAPI Documentation

Getting Started

Simply install this package into your HotStaq project by doing:

npm install @hotstaq/userroute

Then in your code base, navigate to your API that extends the HotAPI class and add the new route:

this.addRoute (new UserRoute (this));

Now your API will have the user route available with all the endpoints listed in the OpenAPI documentation.

NOTE The environment variable JWT_SECRET_KEY is required for this package to work. This is the secret key used to sign the JWT tokens.

Environment Variables

  • JWT_SECRET_KEY
    • Description: The JWT secret key to use for signing tokens.
    • Type: string
    • Default:
  • AUTO_VERIFY_USERS
    • Description: If set to 1, users will be automatically verified upon registration. This is mostly for development purposes.
    • Type: number
    • Default: 0
  • DISABLE_REHASHING
    • Description: If set to 1, passwords will not be rehashed after a successful login.
    • Type: number
    • Default: 0
  • DATABASE_DISABLE
    • Description: If set to 1, a database connection will not be established.
    • Type: number
    • Default: 0

API Generation

To generate a web client for use on a website enter:

npm run build-web

To generate the OpenAPI 3.0.0 YAML documentation enter:

npm run build-doc