with npm and Bugsnag?
Emit new event with the latest count of downloads for an npm package. See the documentation
Emit new event when a new version of an npm package is published. See the documentation
Emit new event when an existing error receives a new occurrence.
Emit new event when a new release version is deployed to a selected project.
Create a new project for a specific organization in Bugsnag. See the documentation
Update an the severity status of an error in Bugsnag. See the documentation
The Bugsnag API enables you to interact programmatically with Bugsnag data, letting you manage and access error reports, project settings, and release tracking for your applications. With Pipedream's integration, you can automate workflows that respond to new errors, aggregate error data for analysis, or synchronize error information with other tools in your development stack.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bugsnag: {
type: "app",
app: "bugsnag",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.bugsnag.com/user`,
headers: {
"Authorization": `token ${this.bugsnag.$auth.api_token}`,
},
})
},
})