Expand my Community achievements bar.

SOLVED

I/O Runtime with Azure (Blobs) Storage

Avatar

Level 2

Hi, is it possible to use Azure blobs storage in a runtime web function? Nodejs does have support for it but then I try to include "var azure = require('azure-storage');" - the action fails.

And is it possible to add libraries to the runtime environment?

Thank you!

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Employee

Hi @wiki - yes it is possible to connect to Azure Blob storage or any other cloud service in your Runtime action.

Adding npm libraries to your runtime action is of course possible.

The simplest way is zipping everything and deploy to your action.

However, our recommendation is creating Project Firefly apps which take care of the npm dependencies and deployment.

View solution in original post

2 Replies

Avatar

Correct answer by
Employee

Hi @wiki - yes it is possible to connect to Azure Blob storage or any other cloud service in your Runtime action.

Adding npm libraries to your runtime action is of course possible.

The simplest way is zipping everything and deploy to your action.

However, our recommendation is creating Project Firefly apps which take care of the npm dependencies and deployment.

Avatar

Level 2

Great, thanks a lot! I am also considering Project Firefly.