@nxazure/func
v2.0.3
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"
}
]
}
}
}
}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'],
}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.
- Use the name of your local NX app and the name of your existing function app on Azure to run the publish command:
nx publish <local-app-name> -n <function-app-on-azure>- Wait for the process to finish and the triggers to properly sync
Limitations
Currently, the plugin supports only TypeScript functions.
