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
Runs a specific query in Peaka and returns the result as line items. See the documentation.
Performs a search for a specific query in Peaka and returns the matches as rows. See the documentation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
peaka: {
type: "app",
app: "peaka",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://partner.peaka.studio/api/v1/supportedDrivers`,
headers: {
Authorization: `Bearer ${this.peaka.$auth.api_key}`,
},
})
},
})