The free all-in-one training tool built for mobile that your teams love.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
With EdApp, you can build interactive mobile learning experiences for your
employees or customers.
Some examples of what you can build with EdApp:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
edapp: {
type: "app",
app: "edapp",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://rest.edapp.com/v2/users`,
headers: {
Authorization: `Bearer ${this.edapp.$auth.api_token}`,
},
})
},
})
// 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
},
})