npm i @oramacloud/client
import { OramaClient } from "@oramacloud/client";
const client = new OramaClient({
endpoint: "<Your Orama Cloud Endpoint>",
api_key: "<Your Orama Cloud API Key>",
});
const results = await client.search({
term: "red leather shoes",
});
const results = await client.search({
term: "red leather shoes",
where: {
price: {
lte: 9.99,
},
gender: "unisex",
},
limit: 5,
offset: 1,
});
- Call the
.identify()
method with the user's unique identifier. - Call
.reset()
when users log out.
Note: we suggest developers to always call .identify()
when users sign-up, log-in or when the user re-opens the application in a logged-in state.
Example or already logged in state:
import { OramaClient } from "@oramacloud/client";
const client = new OramaClient({
endpoint: "<Your Orama Cloud Endpoint>",
api_key: "<Your Orama Cloud API Key>",
});
client.identify("<Your unique User ID>");
client.search({
term: "red leather shoes",
});
Upon logging out:
client.reset();
- Call the
.identify()
method with the user's unique identifier. - Call
.reset()
when users log out.
OramaClient will always generate a new userId upon initialization, so we suggest developers to call the .reset()
function even when users are not necessarily identified. This will ensure that the client is not associated with the previous user, thus preventing improper data association between sessions.
Aliases are employed to link multiple identifiers to a single user, enabling the tracking of anonymous users across different sessions. This is particularly beneficial for monitoring users who are not logged in or who access the platform from various devices.
import { OramaClient } from "@oramacloud/client";
const client = new OramaClient({
endpoint: "<Your Orama Cloud Endpoint>",
api_key: "<Your Orama Cloud API Key>",
});
// Sets the alias for the current user
client.alias("<Unique Alias ID>");
client.search({
term: "red leather shoes",
});
React, vue and secure proxy are now available as separate packages: