You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+15-2Lines changed: 15 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -21,13 +21,26 @@ and there is also a [REST API](http://www.ibm.com/smarterplanet/us/en/ibmwatson/
21
21
22
22
Pre-compiled bundles are available from on GitHub Releases - just download the file and drop it into your website: https://github.com/watson-developer-cloud/speech-javascript-sdk/releases
23
23
24
+
### Installation - bower
24
25
25
-
### Installation - npm with browserify
26
+
```sh
27
+
bower install --save watson-speech
28
+
```
26
29
27
-
This library is built with [browserify](http://browserify.org/) and easy to use in browserify-based projects :
30
+
### Installation - npm with Browserify or Webpack
31
+
32
+
This library can be bundled with [browserify](http://browserify.org/) or [Webpack](http://webpack.github.io/)
33
+
and easy included in larger projects:
28
34
29
35
npm install --save watson-speech
30
36
37
+
This method enables a smaller bundle by only including the desired components, for example:
38
+
39
+
```js
40
+
var recognizeMic =require('watson-speech/speech-to-text/recognize-microphone');
0 commit comments