File size: 1,286 Bytes
ebffcb3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
---
Order: 2
Area: functions
TOCTitle: Create the application
PageTitle: Create the application
MetaDescription: Try Azure Functions for free with Visual Studio Code
DateApproved: 2/9/2018
---
# Create your local Function App
First, create a local Azure Functions application. An Azure Functions app can contain many Functions with various triggers - this tutorial focuses on HTTP triggers, which allow you to handle to incoming HTTP traffic.
In the Activity Bar, click on the Azure logo to show the **AZURE Functions** explorer and click the **Create Project** icon.

Choose an empty directory for the app then select JavaScript for the language of your Functions App.

When prompted, choose **Open in current window** and VS Code will reload with your new Functions app in the workspace.
Next, add an HTTP trigger Function to your app.
----
<a class="tutorial-next-btn" href="/tutorials/functions-extension/create-function">I created the Functions App</a> <a class="tutorial-feedback-btn" onclick="reportIssue('node-deployment-azurefunctions', 'create-app')" href="javascript:void(0)">I ran into an issue</a>
|