2.7.0-rc.2 • Published 15 days ago

@cere-ddc-sdk/ddc v2.7.0-rc.2

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
15 days ago

@cere-ddc-sdk/ddc

The package provides API for interacting with DDC Storage nodes.

Installation

Using NPM:

npm install @cere-ddc-sdk/ddc --save

Using yarn:

yarn add @cere-ddc-sdk/ddc

Usage

The package provides various low-level APIs to work with DDC. Here is a simple example of how to upload a small piece of data using the StorageNode API.

import { StorageNode, StorageNodeMode, UriSigner, Piece } from '@cere-ddc-sdk/ddc';

const signer = new UriSigner('hybrid label reunion only dawn maze asset draft cousin height flock nation');
const storageNode = new StorageNode(signer, {
  mode: StorageNodeMode.Storage,
  logLevel: 'debug',
  grpcUrl: 'grpc://localhost:9091',
  httpUrl: 'http://localhost:8091',
});

const bucketId = 1n;
const content = new TextEncoder().encode('Hello DDC');
const piece = new Piece(content);

const cid = await storageNode.storePiece(bucketId, piece);

console.log('Stored piece CID', cid);

Documentation

For more information about what this package provides, see API reference

License

Licensed under the Apache License

2.7.0-rc.2

15 days ago

2.7.0-rc.1

17 days ago

2.6.0

30 days ago

2.5.0

2 months ago

2.3.0

2 months ago

2.2.0

3 months ago

2.1.1

3 months ago

2.1.0

3 months ago

2.0.1

4 months ago

2.0.0

4 months ago

2.0.0-rc.29

4 months ago

2.0.0-rc.28

4 months ago

2.0.0-rc.26

4 months ago

2.0.0-rc.25

4 months ago

2.0.0-rc.24

4 months ago

2.0.0-rc.23

4 months ago

2.0.0-rc.22

4 months ago

2.0.0-rc.20

5 months ago

2.0.0-rc.21

5 months ago

2.0.0-rc.19

5 months ago

2.0.0-rc.17

5 months ago

2.0.0-rc.18

5 months ago

2.0.0-rc.16

5 months ago

2.0.0-rc.14

5 months ago

2.0.0-rc.13

5 months ago

2.0.0-rc.12

5 months ago

2.0.0-rc.11

5 months ago

2.0.0-rc.10

5 months ago

2.0.0-rc.9

6 months ago

2.0.0-rc.7

6 months ago

2.0.0-rc.6

6 months ago

2.0.0-rc.5

6 months ago

2.0.0-rc.4

6 months ago

2.0.0-rc.1

6 months ago

2.0.0-rc.0

6 months ago