Compare news from all sides, decipher fact from fiction, and transform big media into actionable insights.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
Perigon is a leading application platform and enables developers to build
powerful applications for their customers. Perigon provides all the necessary
tools and infrastructure to create custom integrated user experiences and
web-based applications. With Perigon, you can quickly and easily build
sophisticated applications and services that are secure, reliable, and
effortlessly scale to meet your users’ needs.
There are a variety of applications that can be built using the Perigon
application platform. The following are a few examples:
These are just a few of the possibilities using the Perigon application
platform. As you can see, with Perigon, the possibilities are endless and you
can create powerful, feature-rich applications that will engage your customers
and grow your business.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
perigon: {
type: "app",
app: "perigon",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.goperigon.com/v1/all`,
params: {
apiKey: `${this.perigon.$auth.apiKey}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})