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

nodebb-plugin-azurestorage

v0.1.4

Published

A plugin for NodeBB to take file uploads and store them on Azure Storage

Readme

NodeBB-plugin-AzureStorage

An upload plugin for NodeBB to use Azure Storage Blob Serivce as file storage backend which also supports CDN endpoint.

Setup

This plugin won't create the Container. Before use this, you should create a container in blob service.

ACL should be set to Blob or Container ( not recommended ), or forum users can't access the file.

Environment

export AZURE_STORAGE_ACCOUNT="xxxxx"
# this is your azure storage account
export AZURE_STORAGE_ACCESS_KEY="yyyyy"
# this is your azure storage key
export AZURE_STORAGE_CONTAINER="zzzz"
# this is your azure storage blob service container name
export AZURE_STORAGE_HOSTNAME="host"
# if you need to specify a different hostname, for example: CDN usage, set it with domain name, or leave it empty
# required http:// or https://
export AZURE_STORAGE_PATH="path"
# if you need to specify a path where all files will be put into, just like /assets, set it.
# url returned will be appended with this path, too
# prepend /

Database

Not Recommended

You can set it from Admin Panel, but it's not recommended, because storage account and key will be stored in plain text, and all admins can check it from admin panel.

Settings from database is top priority.

File Storage

All files uploaded will be renamed. For example, somepicture-iob0ucoj.png.

If you want to make it convenient to manage, it can be found in library.js and function uploadToAzureStorage.

LICENSE

MIT LICENSE

Check LICENSE file.