Skip to content

Instantly share code, notes, and snippets.

@tombruijn
Created October 11, 2022 08:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tombruijn/4750278587875d0a4d79bd1eb62a3b9e to your computer and use it in GitHub Desktop.
Save tombruijn/4750278587875d0a4d79bd1eb62a3b9e to your computer and use it in GitHub Desktop.
AppSignal for Node.js version 3 beta example appsignal.js/ts files
const { Appsignal } = require("@appsignal/nodejs");
export default new Appsignal({
active: true,
name: "Your app name",
pushApiKey: "YOUR-PUSH-API-KEY"
});
import { Appsignal } from "@appsignal/nodejs";
export default new Appsignal({
active: true,
name: "Your app name",
pushApiKey: "YOUR-PUSH-API-KEY"
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment