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

bufferbus

v1.0.1

Published

Library to provide a super simple interface for uploading files to major cloud storage platforms. Currently supported platforms include AWS S3, Google Cloud Storage, Google Drive, Azure Blob Storage and Firebase.

Downloads

166

Readme

Bufferbus

Library to provide a super simple interface for uploading files to major cloud storage platforms. Currently supported platforms include AWS S3, Google Cloud Storage, Google Drive, Azure Blob Storage and Firebase.

Installation

Install bufferbus with npm

npm install bufferbus

Usage/Examples

There is a CommonJS build so you can require the library like you would any other Node.js library

const bufferBus = require("bufferbus");

There is also an ES Module build so you can import what you need

import { createUploader } from "bufferbus";

Usage is very straightforward. You simply create an upload function with your preferred platform

import { createUploader } from "bufferbus";

const uploadToFirebase = createUploader({
  platform: "firebase",
  config: {
    bucket: "your_firebase_bucket",
    clientEmail: "your_firebase_client_email",
    privateKey: "your_firebase_private_key",
    projectId: "your_firebase_project_id",
  },
});

then use the upload function wherever you need. In this example we assume the file to be uploaded is located in the same folder as the script

const fileUrl = await uploadToFirebase({
  data: fs.createReadStream(path.join(__dirname, "./solar-system.jpg")),
  fileName: "some_folder/some_nested_folder/solar-systems.jpg",
});

console.log(fileUrl);

The data to be uploaded can either be a buffer, or a readable stream (to support super large uploads without affecting memory) as seen in the example above.

The upload function returns a url that can be used to access the uploaded file (this may be null if explicitly specified that the file should not be public).

Folders and nested folders are denoted with slashes before the actual file name as seen above.

Options

The upload function allows you to specify a few options, namely:

mimeType (string)

The mimeType of the file being uploaded, "image/jpeg", "text/csv", "audio/midi" etc. Defaults to "application/octet-stream".

public (boolean)

If the uploaded file should be publicly accessible through a url. Defaults to true.

Please note: This is an object level setting and applies only to the uploaded file. The file may still be restricted by bucket/container level rules that prevent it from being publicly accessed. Such rules can be modified on the corresponding platform's dashboard.

overwriteDuplicate (boolean)

If to overwrite files in the same folder that have the same name as the uploaded file. Defaults to true.