keyv-ipfs
TypeScript icon, indicating that this package has built-in type declarations

0.1.4 • Public • Published

keyv-Ipfs keyv

IPFS storage adapter for Keyv, using json to serialize data fast and small.

Build Status npm

IPFS storage adapter for Keyv.

TTL functionality is handled internally by interval scan, don't need to panic about expired data take too much space.

Install

npm install --save keyv keyv-ipfs

Usage

Using with keyv

const Keyv = require('keyv')
const KeyvIpfs = require('keyv-ipfs')

//... import and create ipfs node

const node = await Ipfs.create();

const keyv = new Keyv({
  store: new KeyvIpfs(node)
});
// More options with default value:
const customKeyv = new Keyv({
  store: new KeyvIpfs(node ,{
    filename: `${os.tmpdir()}/keyv-file/default-rnd-${Math.random().toString(36).slice(2)}.json`, // the file path to store the data
    expiredCheckDelay: 24 * 3600 * 1000, // ms, check and remove expired data in each ms
    writeDelay: 100, // ms, batch write to disk in a specific duration, enhance write performance.
    encode: JSON.stringify, // serialize function
    decode: JSON.parse // deserialize function
  })
})

License

MIT

Dependents (0)

Package Sidebar

Install

npm i keyv-ipfs

Weekly Downloads

0

Version

0.1.4

License

MIT

Unpacked Size

3.67 kB

Total Files

3

Last publish

Collaborators

  • cjrutherfordnyc