This repository contains JavaScript sample code used in Azure Cognitive Search quickstarts, tutorials, and examples.
This Node.js console app uses Azure Cognitive Search 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.
This sample is available in two versions:
- REST calls Azure Cognitive Search's REST APIs directly
- v11 uses the @azure/search-documents client libraries and is the recommmended approach
You can view additional samples for Javascript/Typescript in the azure-sdk-for-js repo.
Add search to a book catalog web app.
This sample includes:
- Bulk import script: Create a new index in your search service called
good-books
. - Client: React website for Azure Cognitive Search: the client application provides the search user interface.
- Server: Function app that calls the Azure.Search.Documents query a search index.: It leverages the Azure SDK for Javascript/Typescript for Cognitive Search.
This sample is designed to be deployed as an Azure Static Web app.