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
Emit new event when a message is posted in the specified channel in Pumble
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
pumble: {
type: "app",
app: "pumble",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://pumble-api-keys.addons.marketplace.cake.com/listChannels`,
headers: {
"Api-Key": `${this.pumble.$auth.api_key}`,
},
})
},
})