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

@dasmeta/nodebb-plugin-upload

v0.2.0

Published

Upload plugin for nodebb (s3, gcs, minio)

Downloads

14

Readme

NodeBB Upload plugin

npm install @dasmeta/nodebb-plugin-upload

A plugin for NodeBB to take file uploads and store them on S3, Google Cloud Storage or Minio

S3 Uploads Configuration

You can configure this plugin via environment variables. You can also configure via the NodeBB Admin panel, which will result in the Bucket and Credentials being stored in the NodeBB Database.

If you decide to use the Database storage for Credentials, then they will take precedence over Environment Variables.

Environment Variables

export UPLOAD_PROVIDER="s3|gcs|minio"

// s3
export AWS_ACCESS_KEY_ID="your-access-key"
export AWS_SECRET_ACCESS_KEY="your-secret-key"
export S3_UPLOADS_BUCKET="your-bucket-name"
export S3_UPLOADS_HOST="host"
export S3_UPLOADS_PATH="path"
export ACL="ACL"
export CLOUD_FRONT_DOMAIN="cloud-front-url"

// gcs
export GCS_SERVICE_ACCOUNT="your-service-account-json"
export GCS_UPLOAD_BUCKET="your-bucket-name"
export GCS_UPLOAD_HOST="host"
export GCS_UPLOAD_PATH="path"

// minio
export MINIO_ACCESS_KEY="your-access-key"
export MINIO_SECRET_KEY="your-secret-key"
export MINIO_UPLOAD_BUCKET="your-bucket-name"
export MINIO_ENDPOINT="host"
export MINIO_UPLOAD_HOST="host"
export MINIO_UPLOAD_PATH="path"

NOTE: Asset host is optional - If you do not specify an asset host, then the default asset host is <bucket>.s3.amazonaws.com. NOTE: Asset path is optional - If you do not specify an asset path, then the default asset path is /.

Database Backed Variables

From the NodeBB Admin panel, you can configure the following settings to be stored in the Database:

  • provider - "s3", "gcs" or "minio"
  • bucket — The S3 or Minio bucket to upload into
  • host - The base URL for the asset.
  • path - The asset path (optional)
  • accessKeyId — The AWS or Minio Access Key Id
  • secretAccessKey — The AWS or Minio Secret Access Key
  • serviceAccount - Google cloud service account JSON (base64 encoded)

NOTE: Storing your Credentials in the database is bad practice, and you really shouldn't do it.

We highly recommend using either Environment Variables instead.