Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
azure-functions
Advanced tools
List, deploy and delete Azure Functions via Node.js.
NOTE: this is not an official Microsoft library. If you're looking for the Azure Functions CLI, see azure-functions-cli.
Install the module by doing:
npm install azure-functions
You'll need to create an Azure Service Principal to authenticate into your Azure account. Checkout this guide on how you can set this up.
With the Azure CLI you just need to do:
npm install azure-cli -g
# set mode to azure resource manager
azure config mode arm
# authenticate
azure login
azure ad app create --name "functions" --home-page "https://www.justpickanydomain.org" --identifier-uris "https://www.justpickanydomain.org/example" --password <INVENT_A_CLIENT_SECRET>
# output
data: AppId: 4fd39843-c338-417d-b549-a545f584a745
data: ObjectId: 4f8ee977-216a-45c1-9fa3-d023089b2962
data: DisplayName: exampleapp
...
info: ad app create command OK
# create the service principal. This guid is your CLIENT_ID
azure ad sp create 4fd39843-c338-417d-b549-a545f584a745
# output
info: Executing command ad sp create
- Creating service principal for application 4fd39843-c338-417d-b549-a545f584a74+
data: Object Id: 7dbc8265-51ed-4038-8e13-31948c7f4ce7
data: Display Name: exampleapp
data: Service Principal Names:
data: 4fd39843-c338-417d-b549-a545f584a745
data: https://www.contoso.org/example
info: ad sp create command OK
# assign a role to this service principal. You need to provide enough access
# to read/write to the Functions App resource
azure role assignment create --objectId 7dbc8265-51ed-4038-8e13-31948c7f4ce7 -o Owner -c /subscriptions/{subscriptionId}/
Each api in this SDK returns a Promise.
Getting a function will return a function object.
var AzureFunctions = require('azure-functions');
var azFunctions = new AzureFunctions('RESOURCE_GROUP_NAME',
'FUNCTION_APP_NAME', {
subscriptionId: 'SUBSCRIPTION_ID',
clientId: 'CLIENT_ID',
clientSecret: 'CLIENT_SECRET',
domain: 'AD_DOMAIN'
});
return azFunctions.getFunction('unittesthttp')
.then(func => {
validateFunctionObject(func);
return azFunctions.getFunction('unittesthttp2');
})
.then(func => {
validateFunctionObject(func);
});
/** func object:
{
"id":"/subscriptions/SUBSCRIPTION_ID/resourceGroups/RESOURCE_GROUP_NAME/providers/Microsoft.Web/sites/FUNCTION_APP_NAME/functions/FUNCTION_NAME",
"name":"serverlessdemo/unittesthttp2",
"type":"Microsoft.Web/sites/functions",
"location":"West US",
"properties":{
"name":"unittesthttp2",
"function_app_id":"/subscriptions/SUBSCRIPTION_ID/resourceGroups/RESOURCE_GROUP_NAME/providers/Microsoft.Web/sites/FUNCTION_APP_NAME",
"script_root_path_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/site/wwwroot/FUNCTION_NAME/",
"script_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/site/wwwroot/FUNCTION_NAME/index.js",
"config_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/site/wwwroot/FUNCTION_NAME/function.json",
"test_data_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/data/functions/sampledata/FUNCTION_NAME.dat",
"secrets_file_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/data/functions/secrets/FUNCTION_NAME.json",
"href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/functions/FUNCTION_NAME",
"config":{
"bindings":[
{
"type":"http",
"direction":"in",
"name":"req"
}
]
},
"files":null,
"test_data":""
}
}
**/
Listing functions returns an array of function objects as shown above.
var AzureFunctions = require('azure-functions');
var azFunctions = new AzureFunctions('RESOURCE_GROUP_NAME',
'FUNCTION_APP_NAME', {
subscriptionId: 'SUBSCRIPTION_ID',
clientId: 'CLIENT_ID',
clientSecret: 'CLIENT_SECRET',
domain: 'AD_DOMAIN'
});
return azFunctions.listFunctions('unittesthttp')
.then(functionListing => {
console.log(functionListing);
});
/** functionListing Object:
[{
"id":"/subscriptions/SUBSCRIPTION_ID/resourceGroups/RESOURCE_GROUP_NAME/providers/Microsoft.Web/sites/FUNCTION_APP_NAME/functions/FUNCTION_NAME",
"name":"serverlessdemo/unittesthttp2",
"type":"Microsoft.Web/sites/functions",
"location":"West US",
"properties":{
"name":"unittesthttp2",
"function_app_id":"/subscriptions/SUBSCRIPTION_ID/resourceGroups/RESOURCE_GROUP_NAME/providers/Microsoft.Web/sites/FUNCTION_APP_NAME",
"script_root_path_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/site/wwwroot/FUNCTION_NAME/",
"script_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/site/wwwroot/FUNCTION_NAME/index.js",
"config_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/site/wwwroot/FUNCTION_NAME/function.json",
"test_data_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/data/functions/sampledata/FUNCTION_NAME.dat",
"secrets_file_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/data/functions/secrets/FUNCTION_NAME.json",
"href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/functions/FUNCTION_NAME",
"config":{
"bindings":[
{
"type":"http",
"direction":"in",
"name":"req"
}
]
},
"files":null,
"test_data":""
}
},
{
"id":"/subscriptions/SUBSCRIPTION_ID/resourceGroups/RESOURCE_GROUP_NAME/providers/Microsoft.Web/sites/FUNCTION_APP_NAME/functions/FUNCTION_NAME",
"name":"serverlessdemo/unittesthttp2",
"type":"Microsoft.Web/sites/functions",
"location":"West US",
"properties":{
"name":"unittesthttp2",
"function_app_id":"/subscriptions/SUBSCRIPTION_ID/resourceGroups/RESOURCE_GROUP_NAME/providers/Microsoft.Web/sites/FUNCTION_APP_NAME",
"script_root_path_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/site/wwwroot/FUNCTION_NAME/",
"script_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/site/wwwroot/FUNCTION_NAME/index.js",
"config_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/site/wwwroot/FUNCTION_NAME/function.json",
"test_data_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/data/functions/sampledata/FUNCTION_NAME.dat",
"secrets_file_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/data/functions/secrets/FUNCTION_NAME.json",
"href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/functions/FUNCTION_NAME",
"config":{
"bindings":[
{
"type":"http",
"direction":"in",
"name":"req"
}
]
},
"files":null,
"test_data":""
}
}]
**/
Given a function name and bindings array you can create functions. See the [bindings section](## Function Bindings) for a list of available bindings.
You can deploy sizeable function, up to several megabytes big. This is useful if you are compiling your functions into a single file.
var AzureFunctions = require('azure-functions');
var azFunctions = new AzureFunctions(nconf.get('RESOURCE_GROUP_NAME'),
nconf.get('FUNCTION_APP_NAME'), {
subscriptionId: nconf.get('SUBSCRIPTION_ID'),
clientId: nconf.get('CLIENT_ID'),
clientSecret: nconf.get('CLIENT_SECRET'),
domain: nconf.get('AD_DOMAIN')
});
return azFunctions.deployFunction('functionname', 'var x = \'foo\'; console.log(\'whatever\');', [{
type: 'http',
direction: 'in',
name: 'req'
}])
.then(func => {
console.log(func);
});
/** func Object
{
"id":"/subscriptions/SUBSCRIPTION_ID/resourceGroups/RESOURCE_GROUP_NAME/providers/Microsoft.Web/sites/FUNCTION_APP_NAME/functions/FUNCTION_NAME",
"name":"serverlessdemo/unittesthttp2",
"type":"Microsoft.Web/sites/functions",
"location":"West US",
"properties":{
"name":"unittesthttp2",
"function_app_id":"/subscriptions/SUBSCRIPTION_ID/resourceGroups/RESOURCE_GROUP_NAME/providers/Microsoft.Web/sites/FUNCTION_APP_NAME",
"script_root_path_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/site/wwwroot/FUNCTION_NAME/",
"script_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/site/wwwroot/FUNCTION_NAME/index.js",
"config_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/site/wwwroot/FUNCTION_NAME/function.json",
"test_data_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/data/functions/sampledata/FUNCTION_NAME.dat",
"secrets_file_href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/vfs/data/functions/secrets/FUNCTION_NAME.json",
"href":"https://FUNCTION_APP_NAME.scm.azurewebsites.net/api/functions/FUNCTION_NAME",
"config":{
"bindings":[
{
"type":"http",
"direction":"in",
"name":"req"
}
]
},
"files":null,
"test_data":""
}
}
**/
Deleting a function is very straight-forward.
var AzureFunctions = require('azure-functions');
var azFunctions = new AzureFunctions(nconf.get('RESOURCE_GROUP_NAME'),
nconf.get('FUNCTION_APP_NAME'), {
subscriptionId: nconf.get('SUBSCRIPTION_ID'),
clientId: nconf.get('CLIENT_ID'),
clientSecret: nconf.get('CLIENT_SECRET'),
domain: nconf.get('AD_DOMAIN')
});
return azFunctions.deleteFunction('functionname')
.then(() => {
console.log('deleted functionname');
});
With Azure Functions you can bind a variety of events from Azure services to Azure functions.
You need to provide this as the bindings
array to the createFunction
method.
[{ path: 'path-within-storage-account',
connection: 'storage-account-connection-string',
name: 'blob-argument-name-for-function',
type: 'blobTrigger',
direction: 'in'
}]
[{ path: 'eventhub-name',
connection: 'service-bus-connection-string',
type: 'eventHubTrigger',
name: 'event-parameter-name-for-function',
direction: 'in'
}]
Webhooks must have their input as an httpTrigger
and output as http
.
[
{ webHookType: 'genericJson',
type: 'httpTrigger',
direction: 'in',
name: 'req'
},
{ type: 'http', direction: 'out', name: 'res' }
]
[{ webHookType: 'github',
type: 'httpTrigger',
direction: 'in',
name: 'req' },
{ type: 'http', direction: 'out', name: 'res' }]
[{ queueName: 'queue-name',
connection: 'storage-account-name',
name: 'message-parameter-name-for-function',
type: 'queueTrigger',
direction: 'in' }]
[{ queueName: 'samples-input',
connection: 'service-bus-connection-string',
name: 'message-parameter-name-for-function',
type: 'serviceBusTrigger',
direction: 'in' }]
[{ schedule: '0 * * * * *',
name: 'timer-parameter-name-for-function',
type: 'timerTrigger',
direction: 'in' }]
FAQs
A node client library for Azure Functions
The npm package azure-functions receives a total of 71 weekly downloads. As such, azure-functions popularity was classified as not popular.
We found that azure-functions demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.