Parikshit Iyengar
Parikshit Iyengar

Reputation: 37

Can I use the azure webjobs sdk from a nodejs webapp?

I have a Azure web-app built using NodeJS and wanted to create a webjob triggered by a queue. Looks like this can be achieved using a QueueTrigger from azure-webjobs-sdk.

I have found examples for

Is it possible to define a Webjob using the SDK from NodeJS code?

P.S. I don't want to run a continous webjob.

Upvotes: 0

Views: 634

Answers (1)

Katy Shimizu
Katy Shimizu

Reputation: 1121

The WebJobs SDK is only usable from C# code when writing Azure WebJobs. However, if you use Azure Functions, you get the same functionality as WebJobs for functions written in JavaScript and other languages. You can check out quickstarts and tutorials in the docs here.

Upvotes: 3

Related Questions