
In this Azure tutorial, we will discuss How To Create Node.js Azure Functions. Along with this, we will also discuss a few other topics like How To Create Node.js Azure Functions using Visual Studio Code, and also we have discussed Deploy Node js Azure Function To Azure from Visual Studio Code, etc.
How To Create Node.js Azure Functions? We can create the Node.js Azure Functions using the Azure Portal along with the Visual Studio Code IDE.
Table of Contents
How To Create Node.js Azure Functions
Here, as part of this functionality, we will create Azure Functions using Node.js and we will use here the IDE as the Visual Studio Code for our development activities.
Step-1: Login to Azure Portal (https://portal.azure.com/)
Step-2: From the Home page, click on the + Create a resource and from the New Window and then click on “Compute”. Now, choose the “Function App”.

Step-3: Provide the below details on the Create Function App window, on the Basics tag, .
- Choose your Correct Subscription.
- Resource Group: Choose your Existing Resource Group and you can create a new one by clicking the Create new link if you don’t have a resource group created now.
- Function App name: You need to provide a valid Function App name.
- Publish: You can choose the Code option.
- Runtime stack: Choose the Node.js Option here.
- Version: You can choose the latest version
- Region: Select the Region for your Function App.
Click on the Next: Hosting > button now.

On the Hosting tab, choose an existing storage account if you have or else you need to create a new storage account by clicking on the Create new link.
Next, select the operating system as Windows and Plan type as Consumption (Serverless).
Keep the other configuration as it is and then finally, click on the Review + Create button.

Now it will validate the details for all the fields, then click on the Create button on the next window to create the Azure Function App.
The deployment is completed successfully. Click on the Go to resource button to see the function app that we have created.

Now the Azure function App is created successfully.

Now Our Function App is ready and now this is the time to create the Azure function now.
Here, there are two approaches to create the Azure Function
First Approach
To create the Azure function, Click on the Functions link from the left navigation and then click on the + Add button on the Azure Function App page.

Now we need to choose the trigger for the Azure Function. Choose the HTTP trigger template from the list of templates. Of course, you can choose any of the triggers based on your choice based on your requirement. But for this example, I am choosing here the HTTP trigger.

Now provide a name for the New Function and choose the Authorization level as Function on the New Function window and then finally, click on the Create Function button to create the Azure function.

Now you can able to see the Azure function created successfully.

Now you can click on the Code + Test link to test if the Azure function is working fine and you can able to see the File created and your function code. This is the index.js file code and that is the entry point to the Azure function.
module.exports = async function (context, req) {
context.log('JavaScript HTTP trigger function processed a request.');
const name = (req.query.name || (req.body && req.body.name));
const responseMessage = name
? "Hello, " + name + ". This HTTP triggered function executed successfully."
: "This HTTP triggered function executed successfully. Pass a name in the query string or in the request body for a personalized response.";
context.res = {
// status: 200, /* Defaults to 200 */
body: responseMessage
};
}

The below is the Function.json code. All the configurations for the Azure function will be done in this file.
{
"bindings": [
{
"authLevel": "function",
"type": "httpTrigger",
"direction": "in",
"name": "req",
"methods": [
"get",
"post"
]
},
{
"type": "http",
"direction": "out",
"name": "res"
}
]
}

Now, if you want to test the function, if it is working fine, click on the Test/Run button from the top. Then select the HTTP method and provide the name value in the body of the function and then click on the Run button

You can able to see below the expected output with the proper response code 200 OK.

Second Approach
How To Create Node.js Azure Functions using Visual Studio Code
Let’s discuss the second approach to create the Azure function i.e. using the Visual Studio Code IDE.
On the Azure Function App page, click on the Switch to classic experience drop-down and then select the Continue to classic experience button from the top navigation.

Now click on the + New function button as highlighted below to create the Azure function.

Select the VS Code as the development tool for the Azure function and then click on the Continue button.

Now select the Direct publish option and then click on the Continue button.

As mentioned below you didn’t install all these stuff then you can install Visual Studio Code, Node.js, .NET Core 2.1, and Azure Functions Core Tools, Azure Functions extensions for Visual Studio Code as mentioned below, and then click on the Finish button.

Once you click on the Install the Azure Functions extension for Visual Studio Code link, it will show you a pop-up with the message Visual Studio Code is required to install this extension, and click on the Continue button.

Click on the Open Visual Studio Code button to open the Visual Studio Code.

Now, It will open the Visual Studio from the local machine with the below pop-up. since I have already installed the Azure Functions Extensions so it is showing the Uninstall button for me or else it will show you the Install button to install that in your Visual Studio Code in the below popup.

Now in Visual Studio Code, click on the Azure button from the left side, it will prompt you to enter your Azure login Credentials, Assuming you are already logged in, now follow the below steps
Click on the Azure button from the left navigation and then click on the Create Function button as highlighted below

Then it will ask you to choose a project location, After selecting the project location, Select the language as JavaScript from the below Pop-up

Now you need to choose the trigger for your Azure Function. Select the HTTP trigger option here.

Now provide a name for your Azure Function.

Select the Authorization Level as Function

Now if you can able to see the Azure Function Created successfully.
Below is the Code for the index.js file.

Here is the code for the function.json file. This is a very important file. This includes all the configurations needed for your Azure Function.

Test Node js Azure Function Locally
Now the Azure Function is created. To make sure the function is working as expected. We can test it locally. Press F5 to run the function. Now you can able to see the Azure Function project ran successfully and provided us with the below Azure Function URL.
http://localhost:7071/api/MyNewAzureFunctionVS

Now Open Your Favorite browser and paste the above URL, you can able to see, we got the expected output. We tried executing the below URL with the name value as a query string parameter. http://localhost:7071/api/MyNewAzureFunctionVS?name=Sakti

Deploy Node js Azure Function To Azure from Visual Studio Code
Now to deploy the Node js Azure Function to Azure, You need to follow the below steps
You can click on the Deploy To function App button as highlighted below.

Or else for the same option, right-click on the Function name —-> Click on the Deploy to Function App option as highlighted below.

Now select the Azure Function App that you have created in the Azure Portal. You can search with your Azure Function App name and then select that.

The next step is click on the Deploy button from the below Pop up

Now you can able to see it deployed the Azure Function to the selected Azure Function App successfully.

Run Node js Azure Function From Package Configuration
After you have deployed the Azure function, you can click on the Website Run from Package option in the Application settings as highlighted. This actually creates a zip file with all the necessary code every time it’s getting deployed. This is one of the best options that really improves the performance of the Nodejs Azure Function.

There are multiple ways to create Azure Function. You can check out Create Azure Function using Visual Studio Code and PowerShell, Creating AzureFunction using Azure Portal, and How To Create Azure Functions In Visual Studio for more information.
You may also like following the below articles
- How To Create API With Azure Functions
- The term ‘Get-AzTableRow’ is not recognized as the name of a cmdlet
- Create Azure Function using Visual Studio Code and PowerShell
- Cannot Find Module ‘@azure/functions’ or its Corresponding Type Declarations
- How To Trigger Azure Functions
Wrapping Up
Well, in this article, we have discussed How To Create Node.js Azure Functions, How To Create Node.js Azure Functions using Visual Studio Code and we also discussed Deploy The Node js Azure Function To Azure from Visual Studio Code, etc. Hope you have enjoyed this Article !!!