Open Data Platform for Headless Content
Run any Go code and use any Go package available with a simple import. Refer to the Pipedream Go docs to learn more.
Directus is a headless CMS that gives you all the power of a database without
any of the complexities. With Directus, you can easily build custom
applications without having to worry about over-complicating your database.
Here are a few examples of what you can build with the Directus API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
directus: {
type: "app",
app: "directus",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.directus.$auth.api_host}/users/me`,
headers: {
Authorization: `Bearer ${this.directus.$auth.access_token}`,
},
})
},
})
package main
import (
"fmt"
pd "github.com/PipedreamHQ/pipedream-go"
)
func main() {
// Access previous step data using pd.Steps
fmt.Println(pd.Steps)
// Export data using pd.Export
data := make(map[string]interface{})
data["name"] = "Luke"
pd.Export("data", data)
}