Skip to content

Deploy functions

This page describes workflows for deploying your functions.

Select your function language:

The deployment preparation process includes both compiling and bundling your TypeScript function files into executable artifacts.

You can use continuous deployment, the Netlify CLI, or the Netlify API to deploy functions.

Continuous deployment with Git

With continuous deployment, your functions are built if needed and deployed each time you push changes to your Git provider. You can rely on Netlify’s default automatic build process, use your own custom build process on Netlify, or build outside of Netlify.

Automatic build

Netlify can automatically detect and build your functions from their source files. This is the most common workflow.

To use this option, follow the TypeScript file naming instructions on the get started with functions page.

Custom build

If you want more control over the handling of your function source files, you can use your site’s build command to customize the build process.

Netlify runs your build command before accessing your functions directory to prepare and deploy your functions. This means you can use your build command to override any part of the default preparation process up until the point Netlify deploys executable artifacts.

Here are some examples of customizations you could make to the process:

  • Bundle your functions with tools not available through Netlify such as Webpack or Rollup.
  • Run unit tests to validate your functions before they’re deployed.

If you want your custom build to bypass Netlify’s automated function and dependency preparation entirely, your build process needs to result in Node.js ZIP archives in your functions directory. Netlify will deploy these without modification.

To customize the build process, do one of the following:

  • Include customizations directly in your build command. For example:
Terminal window
tsc hello/function.ts --outfile netlify/functions/hello.js

This example customizes the TypeScript compilation stage.

  • Invoke scripts through a file called by your build command. For example:
Terminal window
npm run test:functions && npm run build

Where test:functions is a unit testing script configured in package.json. For more information, visit our Forums for a verified Support Guide on testing your Netlify builds.

External build

For even more control over the handling of your function source files and dependencies, you can bundle ZIP archives outside of Netlify.

If you put your bundled ZIP archives in your functions directory before you push changes to your Git provider, Netlify will deploy these executable artifacts without modification.

Manual deploys with CLI

Netlify CLI can upload files directly from your local project directory to your site on Netlify.

Common use cases for this workflow:

  • updating a site while builds are stopped
  • deploying to Netlify at the end of external CI tool tasks

Prepare your function dependencies before you deploy with the CLI.

  1. Install your dependencies. This enables Netlify CLI to automatically zip dependencies with your functions for deployment.
  2. Follow the instructions on the CLI page to deploy your site including your functions.

File digest deploys with API

Netlify API can upload functions when you use the file digest method for manual deploys.

Common use cases for this workflow:

  • updating a site while builds are stopped
  • automating workflows that connect with other systems

Prepare your functions before you deploy with the API.

  1. Zip each function with its dependencies.
  2. Follow the instructions on the API page to deploy your site including executable artifacts for Netlify Functions.

The deployment preparation process includes bundling your JavaScript function files into executable artifacts.

You can use continuous deployment, the Netlify CLI, or the Netlify API to deploy functions.

Continuous deployment with Git

With continuous deployment, your functions are built if needed and deployed each time you push changes to your Git provider. You can rely on Netlify’s default automatic build process, use your own custom build process on Netlify, or build outside of Netlify.

Automatic build

Netlify can automatically detect and build your functions from their source files. This is the most common workflow.

To use this option, follow the JavaScript file naming instructions on the get started with functions page.

Custom build

If you want more control over the handling of your function source files, you can use your site’s build command to customize the build process.

Netlify runs your build command before accessing your functions directory to prepare and deploy your functions. This means you can use your build command to override any part of the default preparation process up until the point Netlify deploys executable artifacts.

Here are some examples of customizations you could make to the process:

  • Bundle your functions with tools not available through Netlify such as Webpack or Rollup.
  • Run unit tests to validate your functions before they’re deployed.

If you want your custom build to bypass Netlify’s automated function and dependency preparation entirely, your build process needs to result in Node.js ZIP archives in your functions directory. Netlify will deploy these without modification.

To customize the build process, do one of the following:

  • Include customizations directly in your build command. For example:
Terminal window
rollup hello/function.js --file netlify/functions/hello.js --format cjs

This example uses Rollup to bundle a specific function.

  • Invoke scripts through a file called by your build command. For example:
Terminal window
npm run test:functions && npm run build

Where test:functions is a unit testing script configured in package.json. For more information, visit our Forums for a verified Support Guide on testing your Netlify builds.

External build

For even more control over the handling of your function source files and dependencies, you can bundle ZIP archives outside of Netlify.

If you put your bundled ZIP archives in your functions directory before you push changes to your Git provider, Netlify will deploy these executable artifacts without modification.

Manual deploys with CLI

Netlify CLI can upload files directly from your local project directory to your site on Netlify.

Common use cases for this workflow:

  • updating a site while builds are stopped
  • deploying to Netlify at the end of external CI tool tasks

Prepare your function dependencies before you deploy with the CLI.

  1. Install your dependencies. This enables Netlify CLI to automatically zip dependencies with your functions for deployment.
  2. Follow the instructions on the CLI page to deploy your site including your functions.

File digest deploys with API

Netlify API can upload functions when you use the file digest method for manual deploys.

Common use cases for this workflow:

  • updating a site while builds are stopped
  • automating workflows that connect with other systems

Prepare your functions before you deploy with the API.

  1. Zip each function with its dependencies.
  2. Follow the instructions on the API page to deploy your site including executable artifacts for Netlify Functions.

The deployment preparation process includes compiling your Go function files into executable artifacts.

You can use continuous deployment, the Netlify CLI, or the Netlify API to deploy functions.

Continuous deployment with Git

With continuous deployment, your functions are built if needed and deployed each time you push changes to your Git provider. You can rely on Netlify’s default automatic build process, use your own custom build process on Netlify, or build outside of Netlify.

Automatic build

Netlify can automatically detect and build your functions from their source files. This is the most common workflow.

To use this option, follow the Go file naming instructions on the Lambda compatibility for Functions page.

Custom build

If you want more control over the handling of your function source files, you can use your site’s build command to customize the build process.

Netlify runs your build command before accessing your functions directory to prepare and deploy your functions. This means you can use your build command to override any part of the default preparation process up until the point Netlify deploys executable artifacts.

Here are some examples of customizations you could make to the process:

  • Detect source files from several different directories.
  • Run unit tests to validate your functions before they’re deployed.

If you want your custom build to bypass Netlify’s automated function preparation entirely, your build process needs to result in binaries compiled for the linux operating system and amd64 architecture in your functions directory. Netlify will deploy these without modification.

You can customize go build in one of the following ways.

  • Include go build directly in your build command. For example:
Terminal window
GOOS=linux GOARCH=amd64 go build -o netlify/functions/hello ./hello/function.go && GOOS=linux GOARCH=amd64 go build -o netlify/functions/goodbye ./goodbye/function.go

This example builds source files saved in multiple different directories into compiled binaries in the functions directory for deployment.

  • Invoke go build through a file called by the build command. For example:
Terminal window
npm run build && npm run build:function

This example invokes a script stored in package.json. Visit the example repository to explore the full example.

For even more control over the handling of your function source files, you can compile binaries outside of Netlify. The binaries must be compiled for the linux operating system and amd64 architecture. Use the Go compilation environment variables GOOS and GOARCH to set the compiler targets:

Terminal window
GOOS=linux GOARCH=amd64 go build

If you put your compiled binaries in your functions directory before you push changes to your Git provider, Netlify will deploy these executable artifacts without modification.

Manual deploys with CLI

Netlify CLI can upload files directly from your local project directory to your site on Netlify.

Common use cases for this workflow:

  • updating a site while builds are stopped
  • deploying to Netlify at the end of external CI tool tasks

Prepare your functions before you deploy with the CLI.

  1. Compile your Go functions to binaries for the linux operating system and amd64 architecture in your functions directory.
Terminal window
GOOS=linux GOARCH=amd64 go build
  1. Follow the instructions on the CLI page to deploy your site including executable artifacts for Netlify Functions.

File digest deploys with API

Netlify API can upload functions when you use the file digest method for manual deploys.

Common use cases for this workflow:

  • updating a site while builds are stopped
  • automating workflows that connect with other systems

Prepare your functions before you deploy with the API.

  1. Compile your Go functions to binaries for the linux operating system and amd64 architecture in your functions directory.
Terminal window
GOOS=linux GOARCH=amd64 go build
  1. Follow the instructions on the API page to deploy your site including executable artifacts for Netlify Functions.