Skip to content

Azure/azure-functions-nodejs-library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

138c021 · Mar 6, 2025
Aug 12, 2024
Feb 7, 2024
Dec 18, 2024
Jun 11, 2024
Mar 6, 2025
Jul 10, 2024
May 2, 2024
Mar 5, 2025
Mar 19, 2024
Sep 27, 2022
Feb 7, 2024
Feb 7, 2024
Sep 26, 2023
Apr 11, 2017
Aug 23, 2024
Jun 3, 2022
Mar 6, 2025
Mar 6, 2025
Feb 7, 2024
Feb 7, 2024

Repository files navigation

Azure Functions Node.js Programming Model

Branch Status Support level Node.js Versions
v4.x (default) Build Status Test Status GA 20, 18
v3.x Build Status Test Status GA 20, 18

Install

npm install @azure/functions

Documentation

Considerations

  • The Node.js "programming model" shouldn't be confused with the Azure Functions "runtime".
    • Programming model: Defines how you author your code and is specific to JavaScript and TypeScript.
    • Runtime: Defines underlying behavior of Azure Functions and is shared across all languages.
  • The programming model version is strictly tied to the version of the @azure/functions npm package, and is versioned independently of the runtime. Both the runtime and the programming model use "4" as their latest major version, but that is purely a coincidence.
  • You can't mix the v3 and v4 programming models in the same function app. As soon as you register one v4 function in your app, any v3 functions registered in function.json files are ignored.

Usage

TypeScript

import { app, HttpRequest, HttpResponseInit, InvocationContext } from "@azure/functions";

export async function httpTrigger1(request: HttpRequest, context: InvocationContext): Promise<HttpResponseInit> {
    context.log(`Http function processed request for url "${request.url}"`);

    const name = request.query.get('name') || await request.text() || 'world';

    return { body: `Hello, ${name}!` };
};

app.http('httpTrigger1', {
    methods: ['GET', 'POST'],
    authLevel: 'anonymous',
    handler: httpTrigger1
});

JavaScript

const { app } = require('@azure/functions');

app.http('httpTrigger1', {
    methods: ['GET', 'POST'],
    authLevel: 'anonymous',
    handler: async (request, context) => {
        context.log(`Http function processed request for url "${request.url}"`);

        const name = request.query.get('name') || await request.text() || 'world';

        return { body: `Hello, ${name}!` };
    }
});