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
Generate a series of potential email addresses by synthesizing first names, last names, and company domains. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
emaillistverify: {
type: "app",
app: "emaillistverify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://apps.emaillistverify.com/api/verifyEmail`,
params: {
secret: `${this.emaillistverify.$auth.api_key}`,
email: `test@example.com`,
},
})
},
})