Created
October 11, 2022 08:25
-
-
Save tombruijn/4750278587875d0a4d79bd1eb62a3b9e to your computer and use it in GitHub Desktop.
AppSignal for Node.js version 3 beta example appsignal.js/ts files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const { Appsignal } = require("@appsignal/nodejs"); | |
export default new Appsignal({ | |
active: true, | |
name: "Your app name", | |
pushApiKey: "YOUR-PUSH-API-KEY" | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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