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
Send an email address to be validated by the API. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
mails_so: {
type: "app",
app: "mails_so",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.mails.so/v1/validate`,
headers: {
"x-mails-api-key": `${this.mails_so.$auth.api_key}`,
},
params: {
email: `john.smith@example.com`,
},
})
},
})