title | description | services | documentationcenter | author | manager | editor | ms.assetid | ms.service | ms.workload | ms.tgt_pltfrm | ms.devlang | ms.topic | ms.date | ms.author |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Work with Azure Functions Core Tools | Microsoft Docs |
Learn how to code and test Azure functions from the command prompt or terminal on your local computer before you run them on Azure Functions. |
functions |
na |
ggailey777 |
jeconnoc |
242736be-ec66-4114-924b-31795fd18884 |
functions |
na |
multiple |
multiple |
article |
08/14/2018 |
glenga |
Azure Functions Core Tools lets you develop and test your functions on your local computer from the command prompt or terminal. Your local functions can connect to live Azure services, and you can debug your functions on your local computer using the full Functions runtime. You can even deploy a function app to your Azure subscription.
[!INCLUDE Don't mix development environments]
There are two versions of Azure Functions Core Tools. The version you use depends on your local development environment, choice of language, and level of support required:
-
Version 1.x: supports version 1.x of the runtime, which is Generally Available (GA). This version of the tools is only supported on Windows computers and is installed from an npm package. With this version, you can create functions in experimental languages that are not officially supported. For more information, see Supported languages in Azure Functions
-
Version 2.x: supports version 2.x of the runtime. This version supports Windows, macOS, and Linux. Uses platform-specific package managers or npm for installation. Like the 2.x runtime, this version of the core tools is currently in preview.
Unless otherwise noted, the examples in this article are for version 2.x. To receive important updates on version 2.x, including breaking changes announcements, watch the Azure App Service announcements repository.
Azure Functions Core Tools includes a version of the same runtime that powers Azure Functions runtime that you can run on your local development computer. It also provides commands to create functions, connect to Azure, and deploy function projects.
The original version of the tools uses the Functions 1.x runtime. This version uses the .NET Framework (4.7.1) and is only supported on Windows computers. Before you install the version 1.x tools, you must install NodeJS, which includes npm.
Use the following command to install the version 1.x tools:
npm install -g azure-functions-core-tools
Note
Azure Functions runtime 2.0 is in preview, and currently not all features of Azure Functions are supported. For more information, see Azure Functions versions
Version 2.x of the tools uses the Azure Functions runtime 2.x that is built on .NET Core. This version is supported on all platforms .NET Core 2.x supports, including Windows, macOS, and Linux.
The following steps use npm to install Core Tools on Windows. You can also use Chocolatey. For more information, see the Core Tools readme.
-
Install .NET Core 2.1 for Windows.
-
Install Node.js, which includes npm. For version 2.x of the tools, only Node.js 8.5 and later versions are supported.
-
Install the Core Tools package:
npm install -g azure-functions-core-tools@core
The following steps use Homebrew to install the Core Tools on macOS.
-
Install .NET Core 2.1 for macOS.
-
Install Homebrew, if it's not already installed.
-
Install the Core Tools package:
brew tap azure/functions brew install azure-functions-core-tools
The following steps use APT to install Core Tools on your Ubuntu/Debian Linux distribution. For other Linux distributions, see the Core Tools readme.
-
Install .NET Core 2.1 for Linux.
-
Register the Microsoft product key as trusted:
curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg sudo mv microsoft.gpg /etc/apt/trusted.gpg.d/microsoft.gpg
-
Verify your Ubuntu server is running one of the appropriate versions from the table below. To add the apt source, run:
sudo sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/microsoft-ubuntu-$(lsb_release -cs)-prod $(lsb_release -cs) main" > /etc/apt/sources.list.d/dotnetdev.list' sudo apt-get update
Linux distribution Version Ubuntu 17.10 artful
Ubuntu 17.04 zesty
Ubuntu 16.04/Linux Mint 18 xenial
-
Install the Core Tools package:
sudo apt-get install azure-functions-core-tools
A functions project directory contains the files host.json and local.settings.json, along with subfolders that contain the code for individual functions. This directory is the equivalent of a function app in Azure. To learn more about the Functions folder structure, see the Azure Functions developers guide.
Version 2.x requires you to select a default language for your project when it is initialized, and all functions added use default language templates. In version 1.x, you specify the language each time you create a function.
In the terminal window or from a command prompt, run the following command to create the project and local Git repository:
func init MyFunctionProj
In version 2.x, when you run the command you must choose a runtime for your project. If you plan to develop JavaScript functions, choose node:
Select a worker runtime:
dotnet
node
java
Use the up/down arrow keys to choose a language, then press Enter. The output looks like the following example for a JavaScript project:
Select a worker runtime: node
Writing .gitignore
Writing host.json
Writing local.settings.json
Writing C:\myfunctions\myMyFunctionProj\.vscode\extensions.json
Initialized empty Git repository in C:/myfunctions/myMyFunctionProj/.git/
To create the project without a local Git repository, use the --no-source-control [-n]
option.
Important
By default, version 2.x of the Core Tools creates function app projects for the .NET runtime as C# class projects (.csproj). These C# projects, which can be used with Visual Studio 2017 or Visual Studio Code, are compiled during testing and when publishing to Azure. If you instead want to create and work with the same C# script (.csx) files created in version 1.x and in the portal, you must include the --csx
parameter when you create and deploy functions.
In version 2.x of the Azure Functions runtime, you have to explicitly register the binding extensions (binding types) that you use in your function app.
[!INCLUDE Register extensions]
For more information, see Azure Functions triggers and bindings concepts.
The file local.settings.json stores app settings, connection strings, and settings for Azure Functions Core Tools. It has the following structure:
{
"IsEncrypted": false,
"Values": {
"AzureWebJobsStorage": "<connection-string>",
"AzureWebJobsDashboard": "<connection-string>",
"MyBindingConnection": "<binding-connection-string>"
},
"Host": {
"LocalHttpPort": 7071,
"CORS": "*"
},
"ConnectionStrings": {
"SQLConnectionString": "<sqlclient-connection-string>"
}
}
Setting | Description |
---|---|
IsEncrypted | When set to true, all values are encrypted using a local machine key. Used with func settings commands. Default value is false. |
Values | Collection of application settings and connection strings used when running locally. These values correspond to app settings in your function app in Azure, such as AzureWebJobsStorage and AzureWebJobsDashboard. Many triggers and bindings have a property that refers to a connection string app setting, such as Connection for the Blob storage trigger. For such properties, you need an application setting defined in the Values array. AzureWebJobsStorage is a required app setting for triggers other than HTTP. When you have the Azure storage emulator installed locally, you can set AzureWebJobsStorage to UseDevelopmentStorage=true and Core Tools uses the emulator. This is useful during development, but you should test with an actual storage connection before deployment. |
Host | Settings in this section customize the Functions host process when running locally. |
LocalHttpPort | Sets the default port used when running the local Functions host (func host start and func run ). The --port command-line option takes precedence over this value. |
CORS | Defines the origins allowed for cross-origin resource sharing (CORS). Origins are supplied as a comma-separated list with no spaces. The wildcard value (*) is supported, which allows requests from any origin. |
ConnectionStrings | Do not use this collection for the connection strings used by your function bindings. This collection is only used by frameworks that typically get connection strings from the ConnectionStrings section of a configuration file, such as Entity Framework. Connection strings in this object are added to the environment with the provider type of System.Data.SqlClient. Items in this collection are not published to Azure with other app settings. You must explicitly add these values to the Connection strings collection of your function app settings. If you are creating a SqlConnection in your function code, you should store the connection string value in Application settings with your other connections. |
The function app settings values can also be read in your code as environment variables. For more information, see the Environment variables section of these language-specific reference topics:
Settings in the local.settings.json file are only used by Functions tools when running locally. By default, these settings are not migrated automatically when the project is published to Azure. Use the --publish-local-settings
switch when you publish to make sure these settings are added to the function app in Azure. Values in ConnectionStrings are never published.
When no valid storage connection string is set for AzureWebJobsStorage and the emulator isn't being used, the following error message is shown:
Missing value for AzureWebJobsStorage in local.settings.json. This is required for all triggers other than HTTP. You can run 'func azure functionapp fetch-app-settings ' or specify a connection string in local.settings.json.
Even when using the storage emulator for development, you may want to test with an actual storage connection. Assuming you have already created a storage account, you can get a valid storage connection string in one of the following ways:
-
From the Azure portal. Navigate to your storage account, select Access keys in Settings, then copy one of the Connection string values.
-
Use Azure Storage Explorer to connect to your Azure account. In the Explorer, expand your subscription, select your storage account, and copy the primary or secondary connection string.
-
Use Core Tools to download the connection string from Azure with one of the following commands:
- Download all settings from an existing function app:
func azure functionapp fetch-app-settings <FunctionAppName>
- Get the Connection string for a specific storage account:
func azure storage fetch-connection-string <StorageAccountName>
When you are not already signed in to Azure, you are prompted to do so.
To create a function, run the following command:
func new
In version 2.x, when you run func new
you are prompted to choose a template in the default language of your function app, then you are also prompted to choose a name for your function. In version 1.x, you are also prompted to choose the language.
Select a language: Select a template:
Blob trigger
Cosmos DB trigger
Event Grid trigger
HTTP trigger
Queue trigger
SendGrid
Service Bus Queue trigger
Service Bus Topic trigger
Timer trigger
Function code is generated in a subfolder with the provided function name, as you can see in the following queue trigger output:
Select a language: Select a template: Queue trigger
Function name: [QueueTriggerJS] MyQueueTrigger
Writing C:\myfunctions\myMyFunctionProj\MyQueueTrigger\index.js
Writing C:\myfunctions\myMyFunctionProj\MyQueueTrigger\readme.md
Writing C:\myfunctions\myMyFunctionProj\MyQueueTrigger\sample.dat
Writing C:\myfunctions\myMyFunctionProj\MyQueueTrigger\function.json
You can also specify these options in the command using the following arguments:
Argument | Description |
---|---|
--language -l |
The template programming language, such as C#, F#, or JavaScript. This option is required in version 1.x. In version 2.x, do not use this option or choose the default language of your project. |
--template -t |
Use the func templates list command to see the complete list of available templates for each supported language. |
--name -n |
The function name. |
--csx |
(Version 2.x) Generates the same C# script (.csx) templates used in version 1.x and in the portal. |
For example, to create a JavaScript HTTP trigger in a single command, run:
func new --template "Http Trigger" --name MyHttpTrigger
To create a queue-triggered function in a single command, run:
func new --template "Queue Trigger" --name QueueTriggerJS
To run a Functions project, run the Functions host. The host enables triggers for all functions in the project:
func host start
The host
command is only required in version 1.x.
func host start
supports the following options:
Option | Description |
---|---|
--cors |
A comma-separated list of CORS origins, with no spaces. |
--debug <type> |
Starts the host with the debug port open so that you can attach to the func.exe process from Visual Studio Code or Visual Studio 2017. The <type> options are VSCode and VS . |
--port -p |
The local port to listen on. Default value: 7071. |
--timeout -t |
The timeout for the Functions host to start, in seconds. Default: 20 seconds. |
--useHttps |
Bind to https://localhost:{port} rather than to http://localhost:{port} . By default, this option creates a trusted certificate on your computer. |
--build |
Build current project before running. Version 2.x and C# projects only. |
--cert |
The path to a .pfx file that contains a private key. Only used with --useHttps . Version 2.x only. |
--password |
Either the password or a file that contains the password for a .pfx file. Only used with --cert . Version 2.x only. |
--language-worker |
Arguments to configure the language worker. Version 2.x only. |
--nodeDebugPort -n |
The port for the node debugger to use. Default: A value from launch.json or 5858. Version 1.x only. |
For a C# class library project (.csproj), you must include the --build
option to generate the library .dll.
When the Functions host starts, it outputs the URL of HTTP-triggered functions:
Found the following functions:
Host.Functions.MyHttpTrigger
Job host started
Http Function MyHttpTrigger: http://localhost:7071/api/MyHttpTrigger
To test your functions locally, you start the Functions host and call endpoints on the local server using HTTP requests. The endpoint you call depends on the type of function.
Note
Examples in this topic use the cURL tool to send HTTP requests from the terminal or a command prompt. You can use a tool of your choice to send HTTP requests to the local server. The cURL tool is available by default on Linux-based systems. On Windows, you must first download and install the cURL tool.
For more general information on testing functions, see Strategies for testing your code in Azure Functions.
You call the following endpoint to locally run HTTP and webhook triggered functions:
http://localhost:{port}/api/{function_name}
Make sure to use the same server name and port that the Functions host is listening on. You see this in the output generated when starting the Function host. You can call this URL using any HTTP method supported by the trigger.
The following cURL command triggers the MyHttpTrigger
quickstart function from a GET request with the name parameter passed in the query string.
curl --get http://localhost:7071/api/MyHttpTrigger?name=Azure%20Rocks
The following example is the same function called from a POST request passing name in the request body:
curl --request POST http://localhost:7071/api/MyHttpTrigger --data '{"name":"Azure Rocks"}'
You can make GET requests from a browser passing data in the query string. For all other HTTP methods, you must use cURL, Fiddler, Postman, or a similar HTTP testing tool.
For all kinds of functions other than HTTP triggers and webhooks, you can test your functions locally by calling an administration endpoint. Calling this endpoint with an HTTP POST request on the local server triggers the function. You can optionally pass test data to the execution in the body of the POST request. This functionality is similar to the Test tab in the Azure portal.
You call the following administrator endpoint to trigger non-HTTP functions:
http://localhost:{port}/admin/functions/{function_name}
To pass test data to the administrator endpoint of a function, you must supply the data in the body of a POST request message. The message body is required to have the following JSON format:
{
"input": "<trigger_input>"
}
The <trigger_input>
value contains data in a format expected by the function. The following cURL example is a POST to a QueueTriggerJS
function. In this case, the input is a string that is equivalent to the message expected to be found in the queue.
curl --request POST -H "Content-Type:application/json" --data '{"input":"sample queue data"}' http://localhost:7071/admin/functions/QueueTriggerJS
Important
The func run
command is not supported in version 2.x of the tools. For more information, see the topic How to target Azure Functions runtime versions.
You can also invoke a function directly by using func run <FunctionName>
and provide input data for the function. This command is similar to running a function using the Test tab in the Azure portal.
func run
supports the following options:
Option | Description |
---|---|
--content -c |
Inline content. |
--debug -d |
Attach a debugger to the host process before running the function. |
--timeout -t |
Time to wait (in seconds) until the local Functions host is ready. |
--file -f |
The file name to use as content. |
--no-interactive |
Does not prompt for input. Useful for automation scenarios. |
For example, to call an HTTP-triggered function and pass content body, run the following command:
func run MyHttpTrigger -c '{\"name\": \"Azure\"}'
[!INCLUDE functions-local-logs-location]
To publish a Functions project to a function app in Azure, use the publish
command:
func azure functionapp publish <FunctionAppName>
You can use the following options:
Option | Description |
---|---|
--publish-local-settings -i |
Publish settings in local.settings.json to Azure, prompting to overwrite if the setting already exists. If you are using the storage emulator, you change the app setting to an actual storage connection. |
--overwrite-settings -y |
Must be used with -i . Overwrites AppSettings in Azure with local value if different. Default is prompt. |
This command publishes to an existing function app in Azure. An error occurs when the <FunctionAppName>
doesn't exist in your subscription. To learn how to create a function app from the command prompt or terminal window using the Azure CLI, see Create a Function App for serverless execution.
The publish
command uploads the contents of the Functions project directory. If you delete files locally, the publish
command does not delete them from Azure. You can delete files in Azure by using the Kudu tool in the Azure portal.
Important
When you create a function app in Azure, it uses version 1.x of the Function runtime by default. To make the function app use version 2.x of the runtime, add the application setting FUNCTIONS_EXTENSION_VERSION=beta
.
Use the following Azure CLI code to add this setting to your function app:
az functionapp config appsettings set --name <function_app> \
--resource-group myResourceGroup \
--settings FUNCTIONS_EXTENSION_VERSION=beta
Azure Functions Core Tools is open source and hosted on GitHub.
To file a bug or feature request, open a GitHub issue.