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
Browse the internet with an AI web navigation agent that can find information for you. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
twin: {
type: "app",
app: "twin",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.twin.so/tasks`,
headers: {
"x-api-key": `${this.twin.$auth.api_key}`,
},
})
},
})