@forwardimpact/libstorage
v0.1.76
Published
Pluggable file storage — local, S3, or Supabase behind a single interface.
Maintainers
Readme
libstorage
Pluggable file storage — local, S3, or Supabase behind a single interface.
Getting Started
import { createStorage } from '@forwardimpact/libstorage';
const storage = createStorage('mybucket');
await storage.put('key.json', { hello: 'world' });
const data = await storage.get('key.json');