--- title: "Node.js APM Troubleshooting Guide" slug: "nodejs-apm-troubleshooting-guide" description: "Ensure Node.js compatibility with Stackify's Node APM. Check module installation, configuration, and inclusion for smooth monitoring of your Node Application in Production." updated: 2020-02-27T22:32:01Z published: 2020-02-27T22:32:01Z canonical: "docs.stackify.com/nodejs-apm-troubleshooting-guide" --- > ## Documentation Index > Fetch the complete documentation index at: https://docs.stackify.com/llms.txt > Use this file to discover all available pages before exploring further. # Node.js APM Troubleshooting Guide ### Verify Compatibility **Node Engine Support** * Stackify supports Node.js version **4.7+** ### Verify Module Installation 1. Check your application's `node_modules` directory, ensure that `stackify-node-apm` exists. 2. Verify `stackify.js` exists in your application's root directory. ```javascript /** * Stackify Node APM Configuration */ exports.config = { /** * Your application name. */ application_name: 'Node Application', /** * Your environment name. */ environment_name: 'Production' } ``` 3. Verify that you have included the stackify module at the top of your application's main module. ```javascript require('stackify-node-apm') ```