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: {
parsera: {
type: "app",
app: "parsera",
}
},
async run({steps, $}) {
const data = {
"url": "https://news.ycombinator.com/",
"attributes": [
{
"name": "Title",
"description": "News title"
},
{
"name": "Points",
"description": "Number of points"
}
]
}
return await axios($, {
method: "POST",
url: `https://api.parsera.org/v1/extract`,
headers: {
"X-API-KEY": `${this.parsera.$auth.api_key}`,
"Accept": `application/json`,
},
data,
})
},
})