@nxazure/func
v3.0.0
Published
Nx plugin for Azure Functions to initialize, create, build, run and publish Azure Functions inside your NX workspace.
Readme
Versioning
For NX <= 19, use @nxazure/func version 1.2.0 and lower For NX >= 20, use @nxazure/func version 1.2.1 and higher
Table of Contents
Quick Start
- Make sure your environment is set as described in the Azure Functions docs.
- Make sure you install the latest Azure Functions Core Tools. The minimum required version is 4.0.5390. You can check your currently installed version by running
func --versioncommand. - Create an NX workspace with any method.
npx create-nx-workspace@latest my-org- Add the @nxazure/func package
npm install -D @nxazure/func- Initialize a function app
nx g @nxazure/func:init my-new-app --directory=apps/my-new-app- Add a function to the app
nx g @nxazure/func:new myNewFunc --project=my-new-app --template="HTTP trigger"- Run the function app
nx start my-new-appFeatures
- Support for TS Config paths (e.g.,
import { tool } from '@my-org/my-lib') - Support for a single
node_modulesfolder in the root dir (just like in other monorepo solutions) - Environment variables are loaded by NX (from .env files) but they can be overwritten by individual local.settings.json files
- All current templates that are supported by the
funcCLI tool are supported. - Run multiple functions at once
nx run-many --target=start --all - Publish the function app straight to your Azure account (az login is required)
Assets
The build executor supports the standard Nx-style assets option on the app's build target.
If you use this feature, install the optional peer dependency first:
npm install -D @nx/jsExample direct copy:
{
"targets": {
"build": {
"executor": "@nxazure/func:build",
"options": {
"assets": ["apps/my-func/README.md"]
}
}
}
}Example wildcard copy:
{
"targets": {
"build": {
"executor": "@nxazure/func:build",
"options": {
"assets": ["apps/my-func/prompts/**/*.md"]
}
}
}
}Example object-form asset pattern:
{
"targets": {
"build": {
"executor": "@nxazure/func:build",
"options": {
"assets": [
{
"input": "apps/my-func/static",
"glob": "**/*.json",
"output": "static"
}
]
}
}
}
}Package.json dependency sync
The build executor can persist the same runtime dependency collection that publish uses. By default, build does not mutate the function app's package.json.
Pass --packageJsonDependencySync=update to copy missing runtime dependencies from the workspace root package.json into the function app's package.json after a successful build:
nx build my-func --packageJsonDependencySync=updatePass --packageJsonDependencySync=install to update the function app's package.json and run the package manager install command in the function app folder:
nx build my-func --packageJsonDependencySync=installThe install mode leaves generated node_modules and lockfiles in place. Publish still uses a temporary dependency sync and cleans up after itself.
Migrating to v2
The recommended way to migrate is to let Nx run the migrations automatically:
nx migrate @nxazure/func@latest
nx migrate --run-migrationsThis will apply all the necessary changes to your workspace. If you prefer to migrate manually (or if the automatic migration didn't run), follow the steps below for each function app project in your workspace.
1. Merge tsconfig.build.json into tsconfig.json
The build executor no longer reads tsconfig.build.json. All TypeScript configuration must live in tsconfig.json.
- Open
tsconfig.build.jsonin your function app. - Copy every
compilerOptionsentry intotsconfig.json. If the same key exists in both files, use the value fromtsconfig.build.json(it was what the build was actually using). SkipnoEmitOnError,rootDir, andtsBuildInfoFile— the build executor manages those automatically. - Copy any top-level fields like
include,exclude, orfilesintotsconfig.json. Again, if a conflict exists, prefer thetsconfig.build.jsonvalue. - Make sure
compilerOptions.outDiris set (e.g.,"dist"). - Delete
tsconfig.build.json.
2. Remove _registerPaths.ts and tsconfig-paths
Runtime path registration has been replaced by a compile-time transformer. The plugin now rewrites import paths during the build, so _registerPaths.ts is no longer needed.
- Delete
_registerPaths.tsfrom your function app root. - If your
.eslintrc.jsonreferences_registerPaths.tsinignorePatterns, remove that entry. - Remove
tsconfig-pathsfrom your workspace rootpackage.jsondependencies (if present).
3. Clean up the app-level package.json
The publish executor now automatically discovers runtime dependencies from your source code and injects them at publish time. You no longer need to list them in the app's package.json.
- Open the
package.jsonin your function app. - Remove any dependency that is directly imported in your source code (e.g.,
@azure/functions). The publish executor will handle these automatically. - Keep any dependency that is not imported from your code — these are peer or indirect dependencies that you manage yourself.
- Add
"type": "module"to thepackage.json.
Example
Before:
{
"name": "my-func-app",
"dependencies": {
"@azure/functions": "^4.0.0",
"some-manual-peer-dep": "^1.0.0"
}
}After (assuming @azure/functions is imported in your code and some-manual-peer-dep is not):
{
"name": "my-func-app",
"type": "module",
"dependencies": {
"some-manual-peer-dep": "^1.0.0"
}
}Known possible issues
- If after creation the build is failing, try updating
@types/nodeand/ortypescriptversions. - To be able to publish a function to your Azure account, an az login is required first.
- If you are using the flat eslint config, you might want to add the following to the end of your base config export:
{
ignores: ['apps/**/dist'],
}- In many cases, running the function locally requires Azurite to be running. A common symptom is a
Connection refused (127.0.0.1:10000)error on startup. This is a standard Azure Functions requirement and applies here as well.
Publish to Azure
- Sign in to Azure
az login- Make sure you select the correct subscription
az account set --subscription "<subscription ID or name>"You can learn more about it on Microsoft Learn.
- Configure the Azure Function App name once in the function app's
project.json:
{
"targets": {
"publish": {
"executor": "@nxazure/func:publish",
"options": {
"name": "my-cool-azure-function-name"
}
}
}
}To give each developer a separate function app, use environment variable templates in the name. Every {VARIABLE_NAME} token is replaced with that environment variable's value before publishing:
{
"targets": {
"publish": {
"executor": "@nxazure/func:publish",
"options": {
"name": "my-cool-azure-function-name-{NXAZURE_FUNCTION_APP_ENV}"
}
}
}
}Nx loads target-specific environment files, so each developer can create an ignored .env.publish.local file in the function app's root:
NXAZURE_FUNCTION_APP_ENV=alexPublish then uses the configured name:
nx publish <local-app-name>- To publish a single app with a different deployed Azure Function App name, use
-nto override the configured name or provide one when it is not configured:
nx publish <local-app-name> -n <function-app-on-azure>- If several apps are configured with a publish name, publish them in parallel:
nx run-many -t publishMissing, blank, or unresolved template values fail before the build starts.
Note: In newer versions of Azure Functions Core Tools, the
funcbinary is no longer bundled insidenode_modules, so runningnpx nx publishwill not work. Instead, make sure that both NX and Azure Functions Core Tools are installed globally on your local machine, and that they are pre-installed on the image used in your CI/CD pipeline.
- Wait for the process to finish and the triggers to properly sync
Limitations
Currently, the plugin supports only TypeScript functions.
