1.0.2 โ€ข Published 1 year ago

script.db-io v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

๐Ÿ“ฆ script.db-io

script.db-io is a simple JavaScript library for IPFS DAG storage. This library allows you to write data to IPFS and read data from IPFS. Additionally, it supports various data formats and codecs.

โœจ Features

  • Provides easy-to-use interface for IPFS DAG storage.
  • Supports conversion between JSON, protobuf, and other formats.
  • Manages IPFS CIDs.
  • Utilizes the latest versions of multiformats.

๐Ÿš€ Installation

To install project dependencies:

npm install

๐Ÿ› ๏ธ Usage

import { read, write } from 'script.db-io'

// Create IPFS connection
const ipfs = ...

// Write data
const data = { key: 'value' }
const cid = await write(ipfs, 'dag-cbor', data)

// Read data
const readData = await read(ipfs, cid)
console.log(readData)

๐Ÿงช Testing

You can run tests using the npm test command.

๐Ÿ“œ License

This project is licensed under the MIT License.

๐Ÿค Contribution

Contributions are welcome! Please report suggestions or issues on GitHub Issues. You can also contribute by opening a pull request.

๐Ÿ“ง Contact

If you have any questions or want to get in touch, feel free to reach us via email.