Release of JavaScript SDK v1.3.0
Hey everyone,
we are pleased to announce the release of version 1.3.0 of the ReductStore SDK for JavaScript. This version supports the new features of ReductStore v1.3, including labels and content type.
Now you can write a record with MIME type and labels to ReductStore:
const client = new Client("https://play.reduct.store");
const bucket = await client.getOrCreateBucket("bucket");
const record = await bucket.beginWrite("entry-1", {
contentType: "text/plain",
labels: { type: "example" },
});
await record.write("Some text");