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

node-red-contrib-backblaze-b2

v1.0.5

Published

A Node-RED node to watch, save and retreive files from an Backblaze B2 bucket

Downloads

17

Readme

Node-Red B2 Backblaze Library

This Node-Red library allows users to interact with the B2 Backblaze cloud storage service. The library contains four nodes: list, download, upload, and delete. These nodes provide users with the ability to perform common operations such as uploading, downloading, and deleting files from their B2 Backblaze account.

Usage

Once the Node-Red B2 Backblaze library is installed, you can use it to interact with your B2 Backblaze account. Below is a brief overview of each node and its functionality. more specific documentation can be found in the Help section in node-red itself.

List Node

The list node allows you to retrieve a list of files from your B2 Backblaze account. You can specify a bucket name and a file prefix to filter the results. The output of this node is an array of filenames, where each object represents a file in your B2 Backblaze account.

Download Node

The download node allows you to download a file from your B2 Backblaze account. You can specify a bucket name and a file name to retrieve the file. The output of this node can also be specified. This library supports all the options that the backblaze-b2 library also supports. Those options are arraybuffer, blob, document, json, text, stream.

Upload Node

The upload node allows you to upload a file to your B2 Backblaze account. You can specify a bucket name, a file name, and the contents of the file. This node always expects msg.payload to be a buffer. The output of this node is an object containing information about the uploaded file.

Delete Node

The delete node allows you to delete a file from your B2 Backblaze account. You can specify a bucket name and a file name to delete the file. The output of this node is an object containing information about the deleted file.

Dependencies

This library depends on the following Node.js modules:

  • backblaze-b2: A Node.js library for interacting with the B2 Backblaze cloud storage service.

License

This library is released under the MIT License.