JSPM

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

Pluggable file storage (local, S3, Supabase) for context agents fetch and produce at runtime.

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