Skip to content

Commit bfb8b79

Browse files
committed
Added a few more bits of detail
1 parent e8bda4b commit bfb8b79

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

articles/cognitive-services/Speech-Service/includes/how-to/speech-to-text-basics/speech-to-text-basics-javascript.md

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
author: IEvangelist
33
ms.service: cognitive-services
44
ms.topic: include
5-
ms.date: 04/13/2020
5+
ms.date: 04/14/2020
66
ms.author: dapine
77
---
88

@@ -14,9 +14,9 @@ This article assumes that you have an Azure account and Speech service subscript
1414

1515
Before you can do anything, you'll need to install the <a href="https://www.npmjs.com/package/microsoft-cognitiveservices-speech-sdk" target="_blank">JavaScript Speech SDK <span class="docon docon-navigate-external x-hidden-focus"></span></a>. Depending on your platform, use the following instructions:
1616

17-
- <a href="https://docs.microsoft.com/azure/cognitive-services/speech-service/speech-sdk?tabs=nodejs" target="_blank">Node.js <span
17+
- <a href="https://docs.microsoft.com/azure/cognitive-services/speech-service/speech-sdk?tabs=nodejs#get-the-speech-sdk" target="_blank">Node.js <span
1818
class="docon docon-navigate-external x-hidden-focus"></span></a>
19-
- <a href="https://docs.microsoft.com/azure/cognitive-services/speech-service/speech-sdk?tabs=nodejs" target="_blank">Web Browser <span class="docon docon-navigate-external x-hidden-focus"></span></a>
19+
- <a href="https://docs.microsoft.com/azure/cognitive-services/speech-service/speech-sdk?tabs=browser#get-the-speech-sdk" target="_blank">Web Browser <span class="docon docon-navigate-external x-hidden-focus"></span></a>
2020

2121
Additionally, depending on the target environment use one of the following:
2222

@@ -26,12 +26,17 @@ Additionally, depending on the target environment use one of the following:
2626
import * as sdk from "microsoft-cognitiveservices-speech-sdk";
2727
```
2828

29+
For more information on `import`, see <a href="https://javascript.info/import-export" target="_blank">export and import <span class="docon docon-navigate-external x-hidden-focus"></span></a>.
30+
2931
# [require](#tab/require)
3032

3133
```javascript
3234
const sdk = require("microsoft-cognitiveservices-speech-sdk");
3335
```
3436

37+
For more information on `require`, see <a href="https://nodejs.org/en/knowledge/getting-started/what-is-require/" target="_blank">what is require? <span class="docon docon-navigate-external x-hidden-focus"></span></a>.
38+
39+
3540
# [script](#tab/script)
3641

3742
Download and extract the <a href="https://aka.ms/csspeech/jsbrowserpackage" target="_blank">JavaScript Speech SDK <span class="docon docon-navigate-external x-hidden-focus"></span></a> *microsoft.cognitiveservices.speech.sdk.bundle.js* file, and place it in a folder accessible to your HTML file.

0 commit comments

Comments
 (0)