Create the app your business needs — without coding, overpaying, or waiting.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
The Glide API allows you to create feature-rich, mobile-friendly apps directly from data sources like Google Sheets or Excel. On Pipedream, you can harness this seamless bridge between your data and the app interface to automate tasks, sync data in real time, and dynamically control your Glide apps. Combine Glide with other apps on Pipedream to enhance functionality, like triggering notifications, processing payments, or managing user data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
glide: {
type: "app",
app: "glide",
}
},
async run({steps, $}) {
const data = {
"appID": `{{your_app_id}}`,
"queries": `[
{
"tableName": "{{your_table_name}}"
}
]`,
}
return await axios($, {
method: "POST",
url: `https://api.glideapp.io/api/function/queryTables`,
headers: {
Authorization: `Bearer ${this.glide.$auth.secret_token}`,
"Content-Type": `application/json`,
},
data,
})
},
})
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
},
})