with npm and screenshotbase?
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
Take a screenshot with ScreenshotBase. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
screenshotbase: {
type: "app",
app: "screenshotbase",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.screenshotbase.com/v1/status`,
headers: {
"apikey": `${this.screenshotbase.$auth.api_key}`,
},
})
},
})