with npm and changes.page?
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
Emit new event when a new post is created. See the documentation
Get the latest post from Changes Page. See the documentation
Get the pinned post from Changes Page. See the documentation
Retrieve a list of posts from Changes Page. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
changes_page: {
type: "app",
app: "changes_page",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.changes_page.$auth.subdomain}.changes.page/latest.json`,
})
},
})