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

user-auth-imgbb

v1.0.0

Published

A Node.js auth package with Imgbb image upload and JWT login

Readme

User Auth with Imgbb Upload

This package provides a ready-to-use user authentication system in Node.js. It supports user registration, login, and profile access, along with profile image upload to Imgbb.


Features

  • Register a user with name, email, password, and a profile image
  • Upload images to Imgbb during registration
  • Secure password storage using bcrypt
  • Generate and verify JWT tokens on login
  • Access protected profile route using token

Setup Instructions

  1. Install the package Add the package to your Node.js project using GitHub Packages or npm.

  2. Environment Variables Create a .env file in your root directory and add the following:

    • IMGBB_API_KEY: Your Imgbb API key (you can get it from imgbb.com)
    • JWT_SECRET: A secret string to sign JWT tokens
    • MONGODB_URI: The full connection string to your MongoDB database (e.g., from MongoDB Atlas)
  3. MongoDB You must have MongoDB running locally or on the cloud. Set your MONGODB_URI like this:

    mongodb+srv://<username>:<password>@cluster0.mongodb.net/your-db-name

    Replace with your actual MongoDB credentials and database name.

  4. Run the server After connecting the router in your Express app, you can start handling register, login, and profile routes.


API Endpoints

  • POST /api/auth/register: Register a new user with name, email, password, and profile image
  • POST /api/auth/login: Log in a user with email and password, returns JWT and user info
  • GET /api/auth/me: Get the profile of the logged-in user (requires token in header)

NPM Package Link

You can access this package on NPM:

https://github.com/nasirsultan/user-auth-imgbb