0.9.4 • Published 1 year ago

@redesblock/mop.js v0.9.4

Weekly downloads
-
License
BSD-3-Clause
Repository
github
Last release
1 year ago

mop.js

Client library for connecting to Mop decentralised storage

Warning: This project is in beta state. There might (and most probably will) be changes in the future to its API and working. Also, no guarantees can be made about its stability, efficiency, and security at this stage.

This project is intended to be used with mop version 0.9.0. Using it with older or newer mop versions is not recommended and may not work.

Install

npm

> npm install @redesblock/mop.js --save

yarn

> yarn add @redesblock/mop.js

Be aware, if you are running Yarn v1 and are attempting to install this repo using GitHub URL, this won't unfortunately work as it does not correctly handle execution of prepare script.

Use in Node.js

We require Node.js's version of at least 12.x

var MopJs = require("@redesblock/mop.js");

Use in a browser with browserify, webpack or any other bundler

var MopJs = require("@redesblock/mop.js");

Usage

import { Mop } from "@redesblock/mop.js"

mop = new Mop("http://localhost:1683")

// Be aware, this creates on-chain transactions that spend BNB and MOP!
const batchId = await mop.createVoucherBatch('100', 17)
const fileHash = await mop.uploadData(batchId, "Welcome to Mop!")
const data = await mop.downloadData(fileHash)

console.log(data.text()) // prints 'Welcome to Mop!'

Setup

Install project dependencies with

npm i

Compile code

In order to compile NodeJS code run

npm run compile:node

or for Browsers

npm run compile:browser

License

BSD-3-Clause