PeakGen
PeakGen

Reputation: 23025

How to add external npm packages to phonegap?

How can I add external npm packages to phonegap? In my phonegap application, I need to add IBM Watson Speech To Text node.js package, which you can find here - http://www.ibm.com/smarterplanet/us/en/ibmwatson/developercloud/speech-to-text/api/v1/?node#

I know I have to download it by npm install watson-developer-cloud but after that what should I do so it will be accessible in phonegap?

Upvotes: 1

Views: 114

Answers (1)

German Attanasio
German Attanasio

Reputation: 23673

You won't be able to run the watson-developer-cloud npm module in PhoneGap because it can't run in the browser.

We are working (see this) on restructuring the module to run in the browser. In the meantime, if you are trying to use the Speech to Text service in PhoneGap use the watson-speech module which has the Speech To Text and Text to Speech APIs.

Upvotes: 1

Related Questions