Connect your app to DataStax Astra DB using the Document API in node.js.
The Astra DB Collection Node.js Client connects to the Astra DB Document API.
- Install the Astra DB JS Collection:
- 1
npm install @astrajs/collections
- Open a browser, navigate to DataStax Astra, and log in.
- From your Dashboard page, select your database.
- Copy the *Cluster ID* of your database.
You can also find the *Cluster ID* in the URL, which is the last UUID in the path: https://astra.datastax.com/org/undefined/database/undefined
- Add the *Cluster ID* as an environment variable with the following command:
- 1
export ASTRA_DB_ID={databaseid}
Example:
- 1
export ASTRA_DB_ID=b5285f63-8da5-4c6e-afd8-ade371a48795
- Copy the Region of your database, the region where your database is located.
- Add the Region as an environment variable with the following command:
- 1
export ASTRA_DB_REGION={region}
Example:
- 1
export ASTRA_DB_REGION=us-east1
- Add your username and your password as environment variables with the following command:
- 1
export ASTRA_DB_APPLICATION_TOKEN={token}
- Use printenv to ensure the environment variables were exported.
Use Client with Nodejs
Document API
- 1
const { createClient } = require("@astrajs/collections");// create an {astra_db} clientconst astraClient = await createClient({ astraDatabaseId: process.env.ASTRA_DB_ID, astraDatabaseRegion: process.env.ASTRA_DB_REGION, applicationToken: process.env.ASTRA_DB_APPLICATION_TOKEN,});// create a shortcut to the users collection in the app namespace/keyspace// collections are created automaticallyconst usersCollection = astraClient.namespace("app").collection("users");// get a single user by document idconst user = await usersCollection.get("cliff@wicklow.com");// get a subdocument by pathconst userBlogComments = await usersCollection.get("cliff@wicklow.com/blog/comments");// search a collection of documentsconst users = await usersCollection.find({ name: { $eq: "Cliff" } });// find a single userconst user = await usersCollection.findOne({ name: { $eq: "dang" } });// create a new document (a documentId is generated)const user = await usersCollection.create({ name: "New Guy",});// create a new user (specifying documentId)const user = await usersCollection.create("cliff@wicklow.com", { name: "cliff",});// create a user subdocumentconst user = await usersCollection.create("cliff@wicklow.com/blog", { title: "new blog",});// partially update userconst user = await usersCollection.update("cliff@wicklow.com", { name: "cliff",});// partially update a user subdocumentconst userBlog = await usersCollection.update("cliff@wicklow.com/blog", { title: "my spot",});// replace a user subdocumetconst userBlog = await usersCollection.replace("cliff@wicklow.com/blog", { title: "New Blog",});// delete a userconst user = await usersCollection.delete("cliff@wicklow.com");// delete a user subdocumentconst userBlog = await usersCollection.delete("cliff@wicklow.com/blog");
REST API
- 1
const { createClient } = require("@astrajs/rest");// create an {astra_db} clientconst astraClient = await createClient({ astraDatabaseId: process.env.ASTRA_DB_ID, astraDatabaseRegion: process.env.ASTRA_DB_REGION, username: process.env.ASTRA_DB_USERNAME, password: process.env.ASTRA_DB_PASSWORD,});const basePath = "/api/rest/v2/KEYSPACES/<namespace>/collections/<collectionName>";// get a single user by document idconst { data, status } = await astraClient.get(`${basePath}/<documentId>`);// get a subdocument by pathconst { data, status } = await astraClient.get(`${basePath}/<documentId>/<subdocument>/<subdocument>`);// search a collection of documentsconst { data, status } = await astraClient.get(basePath, { params: { where: { name: { $eq: "<documentId>" } } }});// create a new user without a document idconst { data, status } = await astraClient.post(basePath, { name: "<documentId>",});// create a new user with a document idconst { data, status } = await astraClient.put(`${basePath}/<documentId>`, { name: "cliff",});// create a user subdocumentconst { data, status } = await astraClient.put(`${basePath}/<documentId>/<subdocument>`, { title: "new blog",});// partially update userconst { data, status } = await astraClient.patch(`${basePath}/<documentId>`, { name: "cliff",});// delete a userconst { data, status } = await astraClient.delete(`${basePath}/<documentId>`);