JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 4046
  • Score
    100M100P100Q120024F
  • License Apache-2.0

Pluggable file storage — local, S3, or Supabase behind a single interface.

Package Exports

  • @forwardimpact/libstorage
  • @forwardimpact/libstorage/bin/fit-storage.js

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');