1.0.2 โข Published 1 year ago
script.db-io v1.0.2
๐ฆ 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.