@storagestack/stacks-provider
v0.8.0-alpha.1
Published
Blockstack / Stacks storage implementation as a provider for storage stack
Maintainers
Readme
Blockstack provider
This is the implementation of a blockstack (@stacks/storage) provider within storage stack. From version 7.0 we use @stacks/storage.
Provider
A provider is an abstract definition of a storage mechanism. Every provider can set, get and delete content.
You can register a provider on the application object of storagestack.
ss.registerProvider(new BlockstackProvider());Or when you want to use a pattern ...
ss.registerProvider(new BlockstackProvider(), '*-index.json');Take a look in the core library to the provider interface.
