Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 353 Bytes

README.md

File metadata and controls

19 lines (14 loc) · 353 Bytes

js-datastore-gcs

Datastore implementation backed by Google Cloud Storage

Usage

const bucketName = '.ipfs'
const storage = new Storage()
const gcs = storage.bucket(bucketName)
const store = new GCSStore('/', {
  gcs,
  createIfMissing: false
})

Examples

You can see examples of GCS backed ipfs in the examples folder