Open source online database tool
Emit new event when a table row is created, updated or deleted, according to the selected event types
The Baserow API allows you to interact programmatically with Baserow, an open-source no-code database tool. With its API, you can automate database operations such as creating, reading, updating, and deleting records. Moreover, it's possible to manage databases, tables, fields, and rows, or integrate with external services to enrich or move data in real-time. Leveraging Pipedream’s capabilities, you can trigger workflows from a variety of events and connect Baserow to numerous apps for seamless data processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
baserow: {
type: "app",
app: "baserow",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.baserow.$auth.base_api_url}/database/rows/table/[TABLE_ID]/`,
headers: {
"Authorization": `Token ${this.baserow.$auth.token}`,
},
})
},
})
Develop, run and deploy your Node.js code in Pipedream workflows, using it between no-code steps, with connected accounts, or integrate Data Stores and File Stores.
This includes installing NPM packages, within your code without having to manage a package.json
file or running npm install
.
Below is an example of installing the axios
package in a Pipedream Node.js code step. Pipedream imports the axios
package, performs the API request, and shares the response with subsequent workflow steps:
// 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
},
})