Editja

Ixxerja permezz ta’


Tutorial: Build a Serverless API with TypeScript and MongoDB

In this tutorial, you'll learn how to create a serverless API using Azure Functions and TypeScript to store data in MongoDB. We'll guide you through deploying your application to Azure, making it accessible via a public HTTP endpoint.

Prerequisites

Install the following software:

Solution Architecture

The solution uses an Azure Functions app to receive the data, which is then sent to Azure Cosmos DB from the Mongoose SDK.

Flow chart showing path of HTTP request to pass data through Azure Functions and store in Azure Cosmos DB.

Open the development environment

  1. In a terminal or command prompt, create a new folder on your local system to use as the root of the Azure functions project.

    mkdir <YOUR-NEW_FOLDER-NAME>
    
  2. Change into the new folder.

    cd <YOUR-NEW_FOLDER-NAME>
    
  3. Open this folder in Visual Studio Code.

    code .
    

Sign in to Azure in Visual Studio Code

  1. Open the Command palette.
  2. Search for and select Azure: Sign in. Complete the step to authenticate to Azure.

Create an Azure resource group

A resource group is a region-based collection of resources. By creating a resource group, then creating resources in that group, at the end of the tutorial, you can delete the resource group without having to delete each resource individually.

  1. In Visual Studio Code, open the Azure explorer by selecting the Azure icon in the primary side bar or use the keyboard shortcut (Shift + Alt + A).

  2. Find your subscription under Resources and select the + icon then select Create Resource Group.

  3. Use the following table to complete the prompts:

    Prompt Value
    Enter the name of the new resource group. azure-tutorial
    Select a location for your new resources. Select a geographical region close to you.

Create the local Functions app

Create a local Azure Functions (serverless) application that contains an HTTP trigger function.

  1. In Visual Studio Code, open the command palette (Ctrl + Shift + P).

  2. Search for and select Azure Functions: Create New Project .

  3. Use the following table to finish creating the local Azure Function project:

    Prompt Value Notes
    Select the folder that will contain your function project Select the current (default) folder.
    Select a language TypeScript
    Select a TypeScript programming model Model V4
    Select a template for your project's first function HTTP Trigger API is invoked with an HTTP request.
    Provide a function name blogposts API route is /api/blogposts
  4. When Visual Studio Code creates of the project, view your API code in the ./src/functions/blogposts.ts file.

    import { app, HttpRequest, HttpResponseInit, InvocationContext } from "@azure/functions";
    
    export async function blogposts(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('blogposts', {
        methods: ['GET', 'POST'],
        authLevel: 'anonymous',
        handler: blogposts
    });
    

    This code is standard boilerplate in the new v4 programming model. It isn't meant to indicate the only way to write an API layer with POST and GET.

  5. Replace the previous code with the following code to allow only GET requests to return all blog posts.

    import { app, HttpRequest, HttpResponseInit, InvocationContext } from "@azure/functions";
    
    // curl --location 'http://localhost:7071/api/blogposts' --verbose
    export async function getBlogPosts(request: HttpRequest, context: InvocationContext): Promise<HttpResponseInit> {
        context.log(`Http function getBlogPosts processed request for url "${request.url}"`);
    
        // Empty array for now ... will fix later
        const blogposts = [];
    
        return {
            status: 200,
            jsonBody: {
                blogposts
            }
        };
    };
    
    app.get('getBlogPosts', {
        route: "blogposts",
        authLevel: 'anonymous',
        handler: getBlogPosts
    });
    

    There are several Azure Functions Node.js v4 programming model changes to this code that you should note:

    • The function name of getBlobPosts, indicating that it's a GET request, will help you isolate the function in the logs.
    • The route property is set to blogposts, which is part of the default API route provided, /api/blogposts.
    • The methods property has been removed and is unnecessary because the app object's use of get indicates this is a GET request.

Start Azurite local storage emulator

Developing functions on your local computer requires either a Storage emulator (free) or an Azure Storage account (paid).

  1. In a separate terminal, start the Azurite local storage emulator.

    azurite --silent --location ./azurite --debug ./azurite/debug.log
    

    This is required to run the Azure Functions locally using a local Azure Storage emulator.

  2. Update the local storage emulator is specified in the local.settings.json file with the AzureWebJobsStorage property to a value of UseDevelopmentStorage=true.

    {
        "IsEncrypted": false,
        "Values": {
        "AzureWebJobsStorage": "UseDevelopmentStorage=true",
        "FUNCTIONS_WORKER_RUNTIME": "node",
        "AzureWebJobsFeatureFlags": "EnableWorkerIndexing"
        }
    }
    

Run the local serverless function

Run the Azure Functions project locally to test it before deploying to Azure.

  1. In Visual Studio Code, set a break point on the return statement, at the end of the getBlogPosts function.

  2. In Visual Studio Code, press F5 to launch the debugger and attach to the Azure Functions host. Enable public and private endpoints if you're prompted.

    You could also use the Debug > Start Debugging menu command.

  3. Output appears in the Terminal panel.

  4. In Visual Studio Code, open the Azure explorer by selecting the Azure icon in the primary side bar or use the keyboard shortcut (Shift + Alt + A).

  5. In the Workspace section, find and expand the Local Project -> Functions -> getBlogPosts.

  6. Right-click the function name, getBlogPosts, then select Copy Function Url.

    Partial screenshot of Visual Studio Code, with the Azure Function's button named Copy Function URL highlighted.

  7. In your browser, paste and submit the URL.

    Alternatively, you can use the following cURL command in the terminal:

    curl http://localhost:7071/api/blogposts --verbose
    
  8. When the debugger stops in Visual Studio Code, you can see the empty blogposts in the Variables->Local window. Allow the debugging to continue past that break point by pressing F5 again.

  9. The response of an empty array of blog posts is returned as:

    {
        "blogposts": []
    }
    
  10. In VS Code, stop the debugger, Shift + F5.

Create the Azure Function app in Visual Studio Code

In this section, you create a function app cloud resource and related resources in your Azure subscription.

  1. In Visual Studio Code, open the command palette (Ctrl + Shift + P).

  2. Search for and select Azure Functions: Create Function App in Azure (Advanced) .

  3. Provide the following information at the prompts:

    Prompt Selection
    Select subscription Select your billing subscription.
    Enter a globally unique name for the function app Type a name that is valid in a URL path, such as first-function. Postpend 3 characters to make the URL globally unique. The name you type is validated to make sure that it's unique in Azure Functions.
    Select a hosting plan Choose Consumption.
    Select a location for new resources Select a geographical location near you.
    Select a runtime stack Choose the latest LTS version.
    Select an OS Choose Linux.
    Select a hosting plan Choose Consumption.
    Select a resource group for new resources Select the resource group you created in the previous step.
    Select a storage account Select Create a new storage account and accept the default name.
    Select an Application Insights resource for your app. Select Create new Application Insights resource and accept the default name.

    Wait until the notification confirms the app has been created.

Deploy the Azure Function app to Azure in Visual Studio Code

Important

Deploying to an existing function app always overwrites the contents of that app in Azure.

  1. Choose the Azure icon in the Activity bar, then in the Resources area, right-click your function app resource and select the Deploy to Function App.
  2. If you're asked if you're sure you want to deploy, select Deploy.
  3. After deployment completes, a notification displays with severals options. Select View Output to view the results. If you miss the notification, select the bell icon in the lower right corner to see it again.

Run the remote serverless function

  1. In Visual Studio Code, open the Azure explorer by selecting the Azure icon in the primary side bar or use the keyboard shortcut (Shift + Alt + A).

  2. In the Resources section, expand your Azure Function app resource. Right-click the function name and select Copy Function Url.

  3. Paste the URL into a browser. The same empty array is returned as when you ran the function locally.

    {"blogposts":[]}
    

Add Azure Cosmos DB for MongoDB API integration

Azure Cosmos DB provides a MongoDB API to provide a familiar integration point.

  1. In Visual Studio Code, open the Azure explorer by selecting the Azure icon in the primary side bar or use the keyboard shortcut (Shift + Alt + A).

  2. In the Resources section, select the + then select Create Database Server. Use the following table to complete the prompts to create a new Azure Cosmos DB resource.

    Prompt Value Notes
    Select an Azure Database Server Azure Cosmos DB for MongoDB API
    Provide an Azure Cosmos DB account name. cosmosdb-mongodb-database Postpend three characters to create a unique name. The name becomes part of the API's URL.
    Select a capacity model. Serverless
    Select MongoDB version. Select latest version.
    Select a resource group for new resources. Select the resource group you created in the previous step. Select the resource group you created in a previous section.
  3. Wait until the resource is created. You can see the status in the Azure section of the results pane.

Install mongoose dependency

In a Visual Studio Code terminal, Ctrl + Shift + `, then install the npm package:

npm install mongoose

Add mongoose code for blog posts

  1. In Visual Studio Code, create a subdirectory named lib at ./src/, create a file named ./database.ts and copy the following code into it.

    import { Schema, Document, createConnection, ConnectOptions, model, set } from 'mongoose';
    
    const connectionString = process.env.MONGODB_URI;
    console.log('connectionString', connectionString);
    
    const connection = createConnection(connectionString, {
      useNewUrlParser: true,
      useUnifiedTopology: true,
      autoIndex: true
    } as ConnectOptions);
    
    export interface IBlogPost {
      author: string
      title: string
      body: string
    }
    
    export interface IBlogPostDocument extends IBlogPost, Document {
      id: string
      created: Date
    }
    
    const BlogPostSchema = new Schema({
      id: Schema.Types.ObjectId,
      author: String,
      title: String,
      body: String,
      created: {
        type: Date,
        default: Date.now
      }
    });
    
    BlogPostSchema.set('toJSON', {
      transform: function (doc, ret, options) {
          ret.id = ret._id;
          delete ret._id;
          delete ret.__v;
      }
    }); 
    
    export const BlogPost = model<IBlogPostDocument>('BlogPost', BlogPostSchema);
    
    connection.model('BlogPost', BlogPostSchema);
    
    export default connection;
    
  2. In Visual Studio Code, open the ./src/functions/blogposts file and replace the entire file's code with the following:

    import { app, HttpRequest, HttpResponseInit, InvocationContext } from "@azure/functions";
    import connection from '../lib/database';
    
    // curl --location 'http://localhost:7071/api/blogposts' --verbose
    export async function getBlogPosts(request: HttpRequest, context: InvocationContext): Promise<HttpResponseInit> {
        context.log(`Http function getBlogPosts processed request for url "${request.url}"`);
    
        const blogposts = await connection.model('BlogPost').find({});
    
        return {
            status: 200,
            jsonBody: {
                blogposts
            }
        };
    };
    
    app.get('getBlogPosts', {
        route: "blogposts",
        authLevel: 'anonymous',
        handler: getBlogPosts
    });
    

Add connection string to local app

  1. In Visual Studio Code's Azure explorer, select the Azure Cosmos DB section and expand to right-click select your new resource.

  2. Select Copy connection string.

  3. In Visual Studio Code, use the File explorer to open ./local.settings.json.

  4. Add a new property called MONGODB_URI and paste the value of your connection string.

    {
      "IsEncrypted": false,
      "Values": {
        "AzureWebJobsStorage": "",
        "FUNCTIONS_WORKER_RUNTIME": "node",
        "AzureWebJobsFeatureFlags": "EnableWorkerIndexing",
        "MONGODB_URI": "mongodb://...."
      }
    }
    

    The secrets in the ./local.settings.json file:

    • Isn't deployed to Azure because its included in the ./.funcignore file.
    • Isn't checked into source control because its included in the ./.gitignore file.

Add connection string to remote app

  1. In Visual Studio Code, open the Azure explorer by selecting the Azure icon in the primary side bar or use the keyboard shortcut (Shift + Alt + A).
  2. In the Resources section, find your Azure Cosmos DB instance. Right-click the resource and select Copy Connection String.
  3. In the same Resources section, find your Function App and expand the node.
  4. Right-click on Application Settings and select Add New Setting.
  5. Enter the app setting name, MONGODB_URI and select Enter.
  6. Paste the value you copied and press enter.

Add APIs for create, update, and delete of blog posts

  1. In Visual Studio Code, use the command palette to find and select Azure Functions: Create function.

  2. Select HTTP trigger and name it blogpost (singular).

  3. Copy the following code into the file.

    import { app, HttpRequest, HttpResponseInit, InvocationContext } from "@azure/functions";
    import connection, { IBlogPost, IBlogPostDocument }  from '../lib/database';
    
    // curl -X POST --location 'http://localhost:7071/api/blogpost' --header 'Content-Type: application/json' --data '{"author":"john","title":"my first post", "body":"learn serverless node.js"}' --verbose
    export async function addBlogPost(request: HttpRequest, context: InvocationContext): Promise<HttpResponseInit> {
        context.log(`Http function addBlogPost processed request for url "${request.url}"`);
    
        const body = await request.json() as IBlogPost;
    
        const blogPostResult = await connection.model('BlogPost').create({
            author: body?.author,
            title: body?.title,
            body: body?.body
        });
    
        return {
            status: 200,
            jsonBody: {
                blogPostResult
            }
        };
    };
    
    // curl -X PUT --location 'http://localhost:7071/api/blogpost/64568e727f7d11e09eab473c' --header 'Content-Type: application/json' --data '{"author":"john jones","title":"my first serverless post", "body":"Learn serverless Node.js with Azure Functions"}' --verbose
    export async function updateBlogPost(request: HttpRequest, context: InvocationContext): Promise<HttpResponseInit> {
        context.log(`Http function updateBlogPost processed request for url "${request.url}"`);
    
        const body = await request.json() as IBlogPost;
        const id = request.params.id;
    
        const blogPostResult = await connection.model('BlogPost').updateOne({ _id: id }, {
            author: body?.author,
            title: body?.title,
            body: body?.body
        });
    
        if(blogPostResult.matchedCount === 0) {
            return {
                status: 404,
                jsonBody: {
                    message: 'Blog post not found'
                }
            };
        }
    
        return {
            status: 200,
            jsonBody: {
                blogPostResult
            }
        };
    };
    
    // curl --location 'http://localhost:7071/api/blogpost/6456597918547e37d515bda3' --verbose
    export async function getBlogPost(request: HttpRequest, context: InvocationContext): Promise<HttpResponseInit> {
        context.log(`Http function getBlogPosts processed request for url "${request.url}"`);
    
        console.log('request.params.id', request.params.id)
        const id = request.params.id;
    
        const blogPost = await connection.model('BlogPost').findOne({ _id: id });
    
        if(!blogPost) {
            return {
                status: 404,
                jsonBody: {
                    message: 'Blog post not found'
                }
            };
        }
    
        return {
            status: 200,
            jsonBody: {
                blogPost
            }
        };
    };
    
    // curl --location 'http://localhost:7071/api/blogpost/6456597918547e37d515bda3' --request DELETE --header 'Content-Type: application/json' --verbose
    export async function deleteBlogPost(request: HttpRequest, context: InvocationContext): Promise<HttpResponseInit> {
        context.log(`Http function deleteBlogPost processed request for url "${request.url}"`);
    
        const id = request.params.id;
    
        const blogPostResult = await connection.model('BlogPost').deleteOne({ _id: id });
    
        if(blogPostResult.deletedCount === 0) {
            return {
                status: 404,
                jsonBody: {
                    message: 'Blog post not found'
                }
            };
        }
    
        return {
            status: 200,
            jsonBody: {
                blogPostResult
            }
        };
    };
    
    app.get('getBlogPost', {
        route: "blogpost/{id}",
        authLevel: 'anonymous',
        handler: getBlogPost
    });
    
    app.post('postBlogPost', {
        route: "blogpost",
        authLevel: 'anonymous',
        handler: addBlogPost
    });
    
    app.put('putBlogPost', {
        route: "blogpost/{id}",
        authLevel: 'anonymous',
        handler: updateBlogPost
    });
    
    app.deleteRequest('deleteBlogPost', {
        route: "blogpost/{id}",
        authLevel: 'anonymous',
        handler: deleteBlogPost
    });
    
  4. Start the local function with the debugger again. The following APIs are available:

    deleteBlogPost: [DELETE] http://localhost:7071/api/blogpost/{id}
    getBlogPost: [GET] http://localhost:7071/api/blogpost/{id}
    getBlogPosts: [GET] http://localhost:7071/api/blogposts
    postBlogPost: [POST] http://localhost:7071/api/blogpost
    putBlogPost: [PUT] http://localhost:7071/api/blogpost/{id}
    
  5. Use the blogpost (singular) API from a cURL command to add a few blog posts.

    curl -X POST --location 'http://localhost:7071/api/blogpost' --header 'Content-Type: application/json' --data '{"author":"john","title":"my first post", "body":"learn serverless node.js"}' --verbose
    
  6. Use the blogposts (plural) API from a cURL command to get the blog posts.

    curl http://localhost:7071/api/blogposts --verbose
    
  7. The response includes the JSON array of a single blog post: :[{"author":"john","title":"my first post","body":"learn serverless node.js","created":"2024-07-11T21:30:41.688Z","id":"66904f0148b2e4d8a2b9971e"}]}.

View all data with Visual Studio Code extension for Azure Cosmos DB

  1. In Visual Studio Code, open the Azure explorer by selecting the Azure icon in the primary side bar or use the keyboard shortcut (Shift + Alt + A).

  2. In the Resources section, right-click your Azure Cosmos DB database and select Refresh.

  3. Expand the test database and blogposts collection node's to view the documents.

  4. Select one of the items listed to view the data in the Azure Cosmos DB instance.

    Partial screenshot of Visual Studio Code, showing the Azure explorer with the Databases with a selected item displayed in the reading pane.

Redeploy the function app to include database code

  1. In Visual Studio Code, open the Azure explorer by selecting the Azure icon in the primary side bar or use the keyboard shortcut (Shift + Alt + A).
  2. In the Resources section, right-click your Azure Function app and select Deploy to Function App.
  3. In the pop-up asking if you're sure you want to deploy, select Deploy.
  4. Wait until deployment completes before continuing.

Use cloud-based Azure Function

  1. Still in the Azure Explorer, in the Functions area, selects and expands your function then the Functions node, which lists the APIs
  2. Right-click on one of the APIs and select Copy Function Url.
  3. Edit the previous cURL commands to use the remote URL instead of the local URL. Run the commands to test the remote API.

Query your Azure Function logs

To search the logs, use the Azure portal.

  1. In Visual Studio Code, select the Azure Explorer, then under Functions, right-click on your function app, then select Open in Portal.

    This opens the Azure portal to your Azure Function.

  2. From Settings, select Application Insights, then select View Application Insights data.

    This link takes you to your separate metrics resource created for you when you created your Azure Function with Visual Studio Code.

  3. From the Monitoring section, select Logs. Close any pop-up windows by selecting the X in the top-right corner of the pop-up to close it.

  4. In the New Query 1 pane, on the Tables tab, double-click the traces table.

    This enters the Kusto query, traces into the query window.

  5. Change the query mode from Simple mode to KQL mode.

  6. Edit the query to search for the custom logs:

    traces 
    | where message startswith "***"
    
  7. Select Run.

    If the log doesn't display any results, it may be because there's a few minute delay between the HTTP request to the Azure Function and the log availability in Kusto. Wait a few minutes and run the query again.

    You didn't need to do anything extra to get this logging information:

    • The code used the context.log function provided by the Function framework. By using context, instead of console, your logging can be filtered to the specific individual function. This is useful if your Function app has many functions.
    • The Function app added Application Insights for you.
    • The Kusto Query tool is included in the Azure portal.
    • You can select traces instead of having to learn to write a Kusto query to get even the minimum information from your logs.

Source code available

Full source code for this Azure Function app:

Clean up resources

Because you used a single resource group, you can delete all resources by deleting the resource group.

  1. In Visual Studio Code, open the Azure explorer by selecting the Azure icon in the primary side bar or use the keyboard shortcut (Shift + Alt + A).
  2. Search for and select Azure: Group by resource group.
  3. Right-click select your resource group and select Delete Resource Group.
  4. Enter the resource group name to confirm the deletion.

Next step