Skip to content

Commit 7672d4b

Browse files
authored
Merge pull request #4 from HeidiSteen/heidist-master
Updated product name references
2 parents 2560144 + fab7f98 commit 7672d4b

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Azure Search JavaScript Samples repository
1+
# Azure Cognitive Search JavaScript Samples repository
22

3-
This repository contains JavaScript sample code used in Azure Search quickstarts, tutorials, and examples.
3+
This repository contains JavaScript sample code used in Azure Cognitive Search quickstarts, tutorials, and examples.
44

55
## Quickstart
66

7-
This Node.js console app uses the Azure Search REST API to create an index, load it with documents, and execute a few queries. The index is modeled on a subset of the Hotels dataset, reduced for readability and comprehension. Index definition and documents are included in the code.
7+
This Node.js console app uses the Azure Cognitive Search REST APIs to create an index, load it with documents, and execute a few queries. The index is modeled on a subset of the Hotels dataset, reduced for readability and comprehension. Index definition and documents are included in the code.

quickstart/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Contributing to Azure Search Quickstart
1+
# Contributing to Azure Cognitive Search samples
22

33
This project welcomes contributions and suggestions. Most contributions require you to agree to a
44
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us

quickstart/README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,31 +3,31 @@ page_type: sample
33
languages:
44
- javascript
55
- nodejs
6-
name: Azure Search Quickstart in Node.js
7-
description: "Learn basic steps for creating, loading, and querying an Azure Search index using REST APIs and Node.js."
6+
name: Azure Cognitive Search Quickstart in Node.js
7+
description: "Learn basic steps for creating, loading, and querying an Azure Cognitive Search index using REST APIs and Node.js."
88
products:
99
- azure
10-
- azure-search
10+
- cognitive-search
1111
urlFragment: nodejs-quickstart
1212
---
1313

14-
# Quickstart sample for Azure Search with Node.js
14+
# Quickstart sample for Azure Cognitive Search with Node.js
1515

1616
![Quickstart sample MIT license badge](https://img.shields.io/badge/license-MIT-green.svg)
1717

18-
Demonstrates using Node.js and the Azure Search REST API to create an index, load it with documents, and execute a few queries. The index is modeled on a subset of the Hotels dataset, reduced for readability and comprehension. Index definition and documents are included in the code.
18+
Demonstrates using Node.js and the Azure Cognitive Search REST APIs to create an index, load it with documents, and execute a few queries. The index is modeled on a subset of the Hotels dataset, reduced for readability and comprehension. Index definition and documents are included in the code.
1919

20-
This Node.js console application is featured in [Node.js Quickstart: Create, load, and query indexes using Azure Search REST APIs](https://docs.microsoft.com/azure/search/search-get-started-nodejs). When you run the program, a console window emits output messages for each step: deleting and then re-creating a hotels-quickstart index, loading documents, running queries. This sample uses the [REST API](https://docs.microsoft.com/en-us/rest/api/searchservice/) and runs on an Azure Search service using connection information that you provide.
20+
This Node.js console application is featured in [Node.js Quickstart: Create, load, and query indexes using Azure Cognitive Search REST APIs](https://docs.microsoft.com/azure/search/search-get-started-nodejs). When you run the program, a console window emits output messages for each step: deleting and then re-creating a hotels-quickstart index, loading documents, running queries. This sample uses the [REST API](https://docs.microsoft.com/en-us/rest/api/searchservice/) and runs on a search service using connection information that you provide.
2121

2222
## Contents
2323

2424
| File/folder | Description |
2525
|-------------|-------------|
2626
| `index.js` | The main program |
27-
| `AzureSearchClient.js` | Defines a class that can makes Azure Search REST API requests. |
27+
| `AzureSearchClient.js` | Defines a class that can makes REST API requests. |
2828
| `azure_search_config.json` | Key-value configuration data. |
29-
| `hotels_quickstart_index.json` | Specifies the structure of the Azure Search index. |
30-
| `hotels.json` | A small amount of sample data to populate Azure Search. |
29+
| `hotels_quickstart_index.json` | Specifies the structure of a search index. |
30+
| `hotels.json` | A small amount of sample data to populate the index. |
3131
| `package.json` | The Node project definition file. |
3232
| `package-lock.json` | The version dependencies of the project. |
3333
| `.eslintrc` | Coding standards used by [ESLint](https://eslint.org/). |
@@ -41,7 +41,7 @@ This Node.js console application is featured in [Node.js Quickstart: Create, loa
4141

4242
+ [Node.js](https://nodejs.org).
4343
+ [NPM](https://www.npmjs.com) should be installed by Node.js.
44-
+ [Create an Azure Search service](search-create-service-portal.md) or [find an existing service](https://ms.portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Search%2FsearchServices) under your current subscription. You can use a free service for this quickstart.
44+
+ [Create a search service in the portal](search-create-service-portal.md) or [find an existing service](https://ms.portal.azure.com/#blade/HubsExtension/BrowseResourceBlade/resourceType/Microsoft.Search%2FsearchServices) under your current subscription. You can use a free service for this quickstart.
4545

4646
Recommended:
4747

@@ -87,5 +87,5 @@ The `run` function :
8787

8888
## Next steps
8989

90-
You can learn more about Azure Search on the [official documentation site](https://docs.microsoft.com/azure/search/).
90+
You can learn more about Azure Cognitive Search on the [official documentation site](https://docs.microsoft.com/azure/search/).
9191

0 commit comments

Comments
 (0)