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
Checks for an existing task within a dartboard using the 'task-name'. If it doesn't exist, a new task is created. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
dart: {
type: "app",
app: "dart",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.itsdart.com/api/v0/users`,
headers: {
Authorization: `Bearer ${this.dart.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})