
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
@cere-ddc-sdk/key-value-storage
Advanced tools
Package for working with DDC data as Key-Value storage.
Support commands:
store - store piece data with required key valueread - read values (pieces) by keyInitialize client by cluster id and secret phrase.
import {KeyValueStorage} from "@cere-ddc-sdk/key-value-storage"
const signatureAlgorithm = "ed25519";
const secretPhrase = "own ranch execute unknown equal will...";
const cdnClusterId = 0n;
const keyValueStorage = await KeyValueStorage.build({
clusterAddress: cdnClusterId,
scheme: signatureAlgorithm
}, secretPhrase);
Store piece data with key in DDC.
import {Piece, PieceUri} from "@cere-ddc-sdk/content-addressable-storage";
const data = new Uint8Array([1, 2, 3, 4, 5]);
const bucketId = 1n;
const key = "abcd";
const piece = new Piece(data)
const pieceUri: PieceUri = await keyValueStorage.store(bucketId, key, piece);
Read piece data by key.
import {Piece} from "@cere-ddc-sdk/content-addressable-storage";
const keyValue = "abcd";
const bucketId = 1n;
const pieces: Piece[] = await keyValueStorage.read(bucketId, keyValue);
FAQs
Key-value storage client
We found that @cere-ddc-sdk/key-value-storage demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.