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
Validates an Australian address. See the documentation
Validates a New Zealand address. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
addressfinder: {
type: "app",
app: "addressfinder",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.addressfinder.io/api/email/v1/verification/`,
headers: {
"Authorization": `${this.addressfinder.$auth.secret}`,
},
params: {
key: `${this.addressfinder.$auth.key}`,
email: `hello@addressfinder.com`,
format: `json`,
},
})
},
})