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: {
are_na: {
type: "app",
app: "are_na",
}
},
async run({steps, $}) {
return await axios($, {
url: `http://api.are.na/v2/search/users`,
headers: {
Authorization: `Bearer ${this.are_na.$auth.oauth_access_token}`,
},
params: {
"q": `John Smith`,
},
})
},
})