Questions tagged [azure-node-sdk]
89 questions
1
vote
1 answer
How to use MSI for development in visual studio code?
Is it possible to use managed service identity from command line or from Visual Studio Code?
I've seen there's an extension for Visual Studio. Is there anything similar for VS Code, or an MSI endpoint accessible outside Azure?
If not, what's the…

paolo_
- 301
- 1
- 3
- 9
1
vote
1 answer
how to deploy angular 6 app to azure node.js empty webapp
I used to deploy my angular app to azure web app. and want to try with nodejs webapp.
Can anyone help me what are the step to do this? Is this same as the other webapp where i copy the files from dist folder and place it in the…

Mukil Deepthi
- 6,072
- 13
- 71
- 156
1
vote
2 answers
Azure Stream Analytics filter IOT Hub input
I am trying to persist incoming IOT Hub D2C messages to an Azure Cosmos DB using Azure Stream Analytics. Every Azure Stream Analytics tutorial I can find assumes that messages incoming from the IOT Hub input are of the same shape, which is not true…

D. Kaiser
- 159
- 1
- 9
1
vote
1 answer
Azure storage is corrupting files after upload?
I'm trying to upload images to azure storage like so:
var xhr = new XMLHttpRequest();
xhr.open("GET", blobUrl);
xhr.responseType = "text";//force the HTTP response, response-type header to be blob
xhr.onload = function () {
…

meds
- 21,699
- 37
- 163
- 314
1
vote
3 answers
Access Azure Batch from an Azure Function
I'm trying to use a Service Principle to access a Batch pool from an Azure Function and running into authentication issues that I don't understand. The initial login with the Service Principle works fine, but then using the credentials to access the…

Mark
- 816
- 1
- 9
- 27
1
vote
0 answers
Receiving alerts/commands from Azure IoT Hub to device using NodeJS
Can any one suggest me how to receive Message/payload on RPI as device sent to Azure IoT Hub.
I am using SimulatedDevice.js and sending data with interval of every 5 seconds to Azure IoT Hub that data is going to store in Azure table storage from…

user8324594
- 11
- 2
1
vote
1 answer
azure-sdk-for-node: virtualMachines.get does not return VM status (stopped, running, deallocated, etc.)
I've made the call to virtualMachines.get to retrieve instance information about my VM. In the output I don't see where you get the status of the VM (stopped, running, deallocated). Is there another way to get the status that I'm looking for?

brennazoon
- 1,379
- 2
- 12
- 11
1
vote
1 answer
Azure Notification Hub for NodeJs (Registration update and replace the tags)
Is it possible to take all of the registration count from the notification hub service using nodejs?
function from the nodejs as follow :
listRegistrationsByTag(tag, optionsopt, callback)
listRegistrations(optionsopt, callback)
but it can only…

Nick
- 49
- 7
1
vote
1 answer
Implementing table joins in the Mobile Apps Node.js backend using SQL
Since Azure Mobile Apps does not provide a way to create relationships between tables I decided to create a custom API in my Node.js backend to return data from related tables. The idea was to implement the joins in the backend using SQL, like…

Dan Flict
- 117
- 8
1
vote
1 answer
Azure Node hosting file/folder permissions
I have launched my sails.js app to Azure Node.js shared infrastructure.
App does not lift due to file permission. Seems like grunt tasks cannot create
concatenated files in .tmp directory in the root.
I tried to give write access via FileZilla but…

Teoman shipahi
- 47,454
- 15
- 134
- 158
1
vote
2 answers
Can't delete azure storage queue message after it has been updated (Message not found)
Used two different libraries for node.js, azure-storage and fast-azure-storage, to the same result.
Here's what I do:
Create a message with default settings - ok.
Get message from a queue - ok.
Update message to reset visibility timeout -…

Sergey B
- 152
- 2
- 9
1
vote
1 answer
MQTT broker inside the Azure Website
I have a Azure website that developed using the ASP.Net WebApi2 running in a Standard plan. I was wondering if its possible to host a MQTT broker in the same website so that I don't have to pay anything extra to have this running in azure.
I see…

Kiran
- 2,997
- 6
- 31
- 62
1
vote
0 answers
Windows Azure Scheduler Node.js Azure SDK
I've been trying to figure out how to use the scheduling API that comes with Windows Node.js Azure SDK:
azure-scheduler
But I can't seem to find any documentation or tutorials on how to use it to create jobs that fire on a certain date that hits an…

PazoozaTest Pazman
- 749
- 12
- 33
1
vote
1 answer
Docs for Azure Node SDK (not command line)?
I have an app that' already integrated wit hthe AWS SDK, and am investigating whether it could support Azure.
I've deployed some test sites with the Azure command line tools which (on Mac and Linux) are Node based, and I've seen the Azure SDK for…

mikemaccana
- 110,530
- 99
- 389
- 494
0
votes
1 answer
Azure storage add role assignment AD group via nodejs
How do I add a new role assignment to an Azure Storage Blob Container where the role is Reader and the member is an Azure AD Group via javascript/nodejs?
I cannot seem to find which SDK to use. I found this page, but not sure if it the correct one…

magnetarneo
- 71
- 7