pipedreamhq.github.io

Directory of Real Time Event Sources

Pipedream is a serverless integration and compute platform.

Pipedream receives data via event sources. Event sources are open source, run on Pipedream’s infrastructure and collect data from your own application and/or services like Github, DropBox, Zoom, RSS feeds, and more.

Event sources emit new events produced by the service, which can trigger Pipedream workflows, or which you can consume using Pipedream’s REST API or a private, real-time SSE stream.

Here is the simplest event source possible, an HTTP event source:

module.exports = {
  name: "http",
  version: "0.0.1",
  props: {
    http: "$.interface.http",
  },
  run(event) {
    console.log(event); // event contains the method, payload, etc.
  },
};

Directory of Real Time Event Sources:

Contribute

Do you want add a real time event source? If so, check out the Component API and Quickstart.

You can get help on our public Slack or reach out to our team directly with any questions or feedback. We’d love to hear from you!

Found a Bug? Have a Feature to suggest?

Before adding an issue, please search the existing issues or reach out to our team to see if a similar request already exists.

If an issue exists, please add a reaction or comment on your specific use case.