Microsoft Azure Cognitive Services Speech SDK for JavaScript
Перейти к файлу
Friedel van Megen 7810d3b1fd
adding support to run tests in vscode (#13)
* updating versions, adding ts-jest

* adding vscode jest launch configuration
2018-12-20 11:03:22 +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 adding comment to intent recognizer authorizationToken 2018-12-20 10:32:14 +01:00
tests re-enable telemetry test after fixing service 2018-12-19 17:58:18 +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 Update README.md 2018-12-17 10:39:34 +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 Initial import of sources (#2) 2018-12-17 10:13:23 +01:00
package-lock.json adding support to run tests in vscode (#13) 2018-12-20 11:03:22 +01:00
package.json adding support to run tests in vscode (#13) 2018-12-20 11:03:22 +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

Visit https://aka.ms/csspeech.

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.