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
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
numverify: {
type: "app",
app: "numverify",
}
},
async run({steps, $}) {
return await axios($, {
url: `http://apilayer.net/api/validate`,
params: {
access_key: `${this.numverify.$auth.api_key}`,
number: `14158586273`,
},
})
},
})