Node package manager
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
The PingBell API is a versatile tool for automating interactions with your physical PingBell device. Pipedream, a serverless integration and compute platform, helps you build workflows around the PingBell API with ease. You can craft automations that trigger when someone rings your PingBell, check the device's battery level, and much more, all within Pipedream's simplified workflow environment. By using Pipedream's capabilities, you can integrate with various apps, send notifications through different channels, log data, and implement complex logic to respond to PingBell events.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pingbell: {
type: "app",
app: "pingbell",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.pingbell.io/userPingbells`,
params: {
api_key: `${this.pingbell.$auth.api_key}`,
},
})
},
})