@storagestack/ipfs-provider

IPFS implementation as a storage provider for storage stack

Usage no npm install needed!

<script type="module">
  import storagestackIpfsProvider from 'https://cdn.skypack.dev/@storagestack/ipfs-provider';
</script>

README

IPFS provider

This is the implementation for the IPFS provider, so if you want to save files to ipfs you can do that with this package.

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 IpfsProvider());

Or when you want to use a pattern ...

ss.registerProvider(new IpfsProvider(), '*-index.json');

Take a look in the core library to the provider interface.