Package Exports
- @forwardimpact/libstorage
- @forwardimpact/libstorage/bin/fit-storage.js
Readme
libstorage
Storage abstraction layer supporting local filesystem, S3, and Supabase backends.
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');