Set Up Application Proxies
Learn how to configure proxies for your frontend applications to communicate with backend services during local development, avoiding CORS issues with Webpack, Vite, and Nx executors.
Bundling for Deployment
Bundle your Node.js application into a single file with no node_modules needed. Deploy without a package.json install step.
Pruning for Deployment
Generate a pruned package.json and lockfile so Docker installs only production dependencies. Replaces the deprecated generatePackageJson option in Nx 20+.
Deploying AWS lambda in Node.js (deprecated)
Learn how to set up, develop, and deploy AWS Lambda functions in an Nx workspace using the @nx/aws-lambda plugin.
Deploying a Node App to Fly.io
Learn how to deploy a Node.js backend application from an Nx workspace to Fly.io, including Docker setup and automating the deployment process.
Add and Deploy Netlify Edge Functions with Node
Learn how to set up, develop, and deploy Node.js serverless functions to Netlify from an Nx workspace, including local development and production deployment.
Wait for Tasks to Finish
Learn how to ensure dependent tasks are completed before running a primary task in Nx, using dependsOn property or the waitUntilTargets option for Node executors.