Last updated 1 year ago
Our node agent can be installed from npm.
npm
npm install @ctrlb/heimdall
Once installed, import our agent at the top of your code as follows.
const heimdall = require('@ctrlb/heimdall'); heimdall.start({ apiKey: '<Your_Api_Key>' });
import * as heimdall from '@ctrlb/heimdall'; heimdall.start({ apiKey: '<Your_Api_Key>' });
You can get your API key by clicking the user profile icon > Profile in IDE plugin.
Other configuration parameters can also be specified as mentioned in .
Now you can run your application as you usually would like
node app.js
Do go through to read more about current possibilities and limitations.