Skip to content

examosa/gcs-blob-store

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gcs-blob-store

A blob store backend for Google Cloud Storage

Pretty much just a thin wrapper around @google-cloud/storage

blob-store-compatible

Node.js CI

Usage

const { gcs } = require("gcs-blob-store");
// Use a service account credentials object
const credentials = require("./credentials.json");
const bucket = "my-gcs-bucket";
const blobs1 = gcs({ bucket, credentials });
// Or specify an absolute path to a service account key file
const keyFilename = "/home/user/.config/keyfile.json";
const blobs2 = gcs({ bucket, keyFilename });

License

MIT

About

Blob store for Google Cloud Storage

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 100.0%