Code-free programming language
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
With Bubble, you can build all sorts of web applications without having to
write any code.
Here are some examples of what you can build with Bubble:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bubble: {
type: "app",
app: "bubble",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.bubble.$auth.root_url}`,
headers: {
Authorization: `Bearer ${this.bubble.$auth.api_key}`,
},
})
},
})
// 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
},
})