0.1.6 • Published 12 months ago

@aeca/client v0.1.6

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
12 months ago

Aeca Javascript Client

A Javascript client for Aeca database server.

Installation

npm install @aeca/client

Example

const collection = "aeca.js.test"
const channel = new Channel("localhost", 10080)
const doc_db = new DocumentDB(channel)

await doc_db.createCollection(collection, indexes)
const data = [
  { doc_id: "1", author: "jaepil", content: "get started" },
  { doc_id: "2", author: "finn", content: "vector database cookbook" },
]
await doc_db.insert(collection, data)

const df = await doc_db.find(collection, { author: "finn" })