OCAP statedb adapter that uses fs as backend
npm install @ocap/statedb-fs
> OCAP statedb adapter that stores data to the disk through lokijs
``sh`
npm install @ocap/statedb-fs
// or
bun install @ocap/statedb-fs
`js
const FsStateDB = require('@ocap/statedb-fs').default;
const statedb = new FsStateDB(os.tmpdir());
statedb.account.create('123', { key: 'value' });
``