You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/cosmos-db/quickstart-vector-store-nodejs.md
+40-3Lines changed: 40 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,6 +7,7 @@ ms.author: diberry
7
7
ms.reviewer: jcodella
8
8
ms.devlang: typescript
9
9
ms.service: azure-cosmos-db
10
+
ms.subservice: nosql
10
11
ms.topic: quickstart-sdk
11
12
ms.date: 02/11/2026
12
13
ai-usage: ai-assisted
@@ -58,11 +59,35 @@ Find the sample code with resource provisioning on [GitHub](https://github.com/A
58
59
59
60
1. Create a new data directory for the hotels data file:
60
61
62
+
### [Linux/macOS](#tab/tab-data-linux)
63
+
61
64
```bash
62
65
mkdir data
63
66
```
64
67
65
-
1. Copy the [raw data file with vectors](https://raw.githubusercontent.com/Azure-Samples/cosmos-db-vector-samples/refs/heads/main/data/HotelsData_toCosmosDB_Vector.json) to your `data` directory.
68
+
### [Windows](#tab/tab-data-windows)
69
+
70
+
```powershell
71
+
New-Item -ItemType Directory -Force -Path data
72
+
```
73
+
74
+
---
75
+
76
+
1. Download the [raw data file with vectors](https://raw.githubusercontent.com/Azure-Samples/cosmos-db-vector-samples/refs/heads/main/data/HotelsData_toCosmosDB_Vector.json) to your `data` directory:
0 commit comments