This package contains the Flystorage adapter that uses only memory
Install all the required packages
npm install --save @flystorage/file-storage @flystorage/in-memory
import {FileStorage} from '@flystorage/file-storage';
import {InMemoryStorageAdapter} from '@flystorage/in-memory';
const adapter = new InMemoryStorageAdapter();
const storage = new FileStorage(adapter);
⚠️ Always use the FileStorage, it is essential for security and a good developer experience. Do not use the adapter directly.