I am currently in the process of developing a mobile application with Nativescript using the Microsoft Azure SDK. To get started, I installed the SDK via npm by running this command:
$ npm install azure-mobile-apps-client --save
However, upon attempting to reference the module like so:
import * as WindowsAzure from 'azure-mobile-apps-client';
I encountered a warning:
Cannot find module 'azure-mobile-apps-client'
This seems like a simple issue, but I'm unsure where I may have made a mistake or how path management works in this scenario. Any suggestions on how to resolve this?
You can view the entire project on Github here.
In the comments, it's suggested that I add a Typings definition, although since everything is written in JS, I am uncertain if that step is necessary. Thoughts?