Microsoft Azure Cognitive Services Speech SDK for JavaScript
Перейти к файлу
Friedel van Megen eacfa7f02a updating property docs, setters get getters doc as well and come last. 2019-01-14 17:48:34 +01:00
.vscode adding support to run tests in vscode (#13) 2018-12-20 11:03:22 +01:00
ci .editorconfig: added 2018-12-19 13:47:47 +01:00
src updating property docs, setters get getters doc as well and come last. 2019-01-14 17:48:34 +01:00
tests Add tests for authtoken utilization. These tests run over the course of an auth token's timeout, and take a long time (20 min each). (#24) 2019-01-10 17:04:08 +01:00
.editorconfig .editorconfig: added 2018-12-19 13:47:47 +01:00
.gitattributes .editorconfig: added 2018-12-19 13:47:47 +01:00
.gitignore Initial import of sources (#2) 2018-12-17 10:13:23 +01:00
.npmignore Initial import of sources (#2) 2018-12-17 10:13:23 +01:00
BuildTestConfig.cmd .editorconfig: added 2018-12-19 13:47:47 +01:00
LICENSE Initial import of sources (#2) 2018-12-17 10:13:23 +01:00
README.md improved documentation, installation links (#18) 2018-12-24 11:12:14 +01:00
REDIST.txt REDIST.txt: add microsoft.cognitiveservices.speech.sdk.bundle-min.js (#6) 2018-12-17 19:09:38 +01:00
RunTests.cmd .editorconfig: added 2018-12-19 13:47:47 +01:00
_config.yml Initial import of sources (#2) 2018-12-17 10:13:23 +01:00
bundleApp.js Initial import of sources (#2) 2018-12-17 10:13:23 +01:00
gulpfile.js Initial import of sources (#2) 2018-12-17 10:13:23 +01:00
jest.config.js Initial import of sources (#2) 2018-12-17 10:13:23 +01:00
jsdoc-conf.json .editorconfig: added 2018-12-19 13:47:47 +01:00
microsoft.cognitiveservices.speech.sdk.ts Remove storage classes and consumers. These were being used to cache host endpoints and doing string concat isn't that expensive plus we have another way to specify a custom endpoint. (#25) 2019-01-10 09:34:37 -08:00
package-lock.json Add tests for authtoken utilization. These tests run over the course of an auth token's timeout, and take a long time (20 min each). (#24) 2019-01-10 17:04:08 +01:00
package.json Add tests for authtoken utilization. These tests run over the course of an auth token's timeout, and take a long time (20 min each). (#24) 2019-01-10 17:04:08 +01:00
tsconfig.json .editorconfig: added 2018-12-19 13:47:47 +01:00
tslint.json .editorconfig: added 2018-12-19 13:47:47 +01:00

README.md

Microsoft Cognitive Services Speech SDK for JavaScript

The Microsoft Cognitive Services Speech SDK for JavaScript is the JavaScript version of the Microsoft Cognitive Services Speech SDK. An in-depth description of feature set, functionality, supported platforms, as well as installation options is available here.

This depot contains the source code and instructions for building the Microsoft Cognitive Services Speech SDK for JavaScript. Your are not required to go through the build process. We create prebuilt packages tuned for your use-cases. These are updated in regular intervals. The published packages are matching the conceptual and reference documentation.

The JavaScript versions of the Cognitive Services Speech SDK supports browser scenarios as well as the use in a Node.js environment. For the browser support you find the QuickStart here. For the Node.js environment you find the QuickStart here, in addition a package is available from npmjs.

Build the project

To build the project you need to install the required packages, and then run the actual build.

Install the required packages

Installation of the required packages is required once in your enlistment. Our automated build restores the packages with the following command:

npm ci

This will install packages exactly matching the package configuration from package-lock.json.

In a development environment you can also use the following command:

npm install

Run the build

Once the dependencies are installed run the build by

npm run build

or

npx gulp bundle

or

npx gulp compress

Note: npx is packaged with NPM 5.2 or above. Update NPM / Node if you don't have it or install it globally with npm install -g npx (less preferable).

Data / Telemetry

This project collects data and sends it to Microsoft to help monitor our service performance and improve our products and services. Read the Microsoft Privacy Statement to learn more.

To disable telemetry, you can call the following API:

// disable telemetry data
sdk.Recognizer.enableTelemetry(false);

This is a global setting and will disable telemetry for all recognizers (already created or new recognizers).

We strongly recommend you keep telemetry enabled. With telemetry enabled you transmit information about your platform (operating system and possibly, Speech Service relevant information like microphone characteristics, etc.), and information about the performance of the Speech Service (the time when you did send data and when you received data). It can be used to tune the service, monitor service performance and stability, and might help us to analyze reported problems. Without telemetry enabled, it is not possible for us to do any form of detailed analysis in case of a support request.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.