Skip to content

Commit 03c0046

Browse files
committed
checkpoint
1 parent 6651d11 commit 03c0046

File tree

2 files changed

+9
-11
lines changed

2 files changed

+9
-11
lines changed

articles/search/search-data-sources-terms-of-use.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.author: heidist
88

99
ms.service: cognitive-search
1010
ms.topic: conceptual
11-
ms.date: 05/29/2021
11+
ms.date: 09/07/2022
1212

1313
---
1414

articles/search/search-get-started-javascript.md

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.author: delegenz
77
ms.devlang: javascript
88
ms.service: cognitive-search
99
ms.topic: quickstart
10-
ms.date: 07/08/2021
10+
ms.date: 09/09/2022
1111
ms.custom: devx-track-js, mode-api
1212
---
1313

@@ -20,7 +20,6 @@ ms.custom: devx-track-js, mode-api
2020
> * [Python](search-get-started-python.md)
2121
> * [REST](search-get-started-rest.md)
2222
23-
2423
Use the [JavaScript/TypeScript SDK for Azure Cognitive Search](/javascript/api/overview/azure/search-documents-readme) to create a Node.js application in JavaScript that creates, loads, and queries a search index.
2524

2625
This article demonstrates how to create the application step by step. Alternatively, you can [download the source code and data](https://github.com/Azure-Samples/azure-search-javascript-samples/tree/master/quickstart/v11) and run the application from the command line.
@@ -37,7 +36,6 @@ Before you begin, have the following tools and services:
3736

3837
+ [Visual Studio Code](https://code.visualstudio.com) or another IDE
3938

40-
4139
## Set up your project
4240

4341
Start by getting the endpoint and key for your search service. Then create a new project with NPM as outlined below.
@@ -67,20 +65,20 @@ Begin by opening VS Code and its [integrated terminal](https://code.visualstudio
6765
cd quickstart
6866
```
6967
70-
2. Initialize an empty project with NPM by running
68+
2. Initialize an empty project with NPM by running the following command. To fully initialize the project, press Enter multiple times to accept the default values, except for the License, which you should set to "MIT".
7169
7270
```cmd
7371
npm init
7472
```
75-
Accept the default values, except for the License, which you should set to "MIT".
76-
77-
3. Install `@azure/search-documents`, the [JavaScript/TypeScript SDK for Azure Cognitive Search](/javascript/api/overview/azure/search-documents-readme).
73+
74+
3. Install `@azure/search-documents`, the [JavaScript/TypeScript SDK for Azure Cognitive Search](/javascript/api/overview/azure/search-documents-readme).
7875
7976
```cmd
8077
npm install @azure/search-documents
8178
```
8279
83-
4. Install `dotenv`, which is used to import the environment variables such as our service name and API key.
80+
4. Install `dotenv`, which is used to import the environment variables such as your search service name and API key.
81+
8482
```cmd
8583
npm install dotenv
8684
```
@@ -103,8 +101,8 @@ Begin by opening VS Code and its [integrated terminal](https://code.visualstudio
103101
"author": "Your Name",
104102
"license": "MIT",
105103
"dependencies": {
106-
"@azure/search-documents": "^11.2.0",
107-
"dotenv": "^8.2.0"
104+
"@azure/search-documents": "^11.3.0",
105+
"dotenv": "^16.0.2"
108106
}
109107
}
110108
```

0 commit comments

Comments
 (0)