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
Record an observation for evaluation in the gami5d platform. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gami5d: {
type: "app",
app: "gami5d",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.gami5d.com/attribute/${this.gami5d.$auth.client_id}/${this.gami5d.$auth.project_id}/list/basic`,
auth: {
username: `${this.gami5d.$auth.access_key}`,
password: `${this.gami5d.$auth.secret_access_key}`,
},
})
},
})