Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
Creates a new database in a group for the organization or user. See the documentation
Returns a list of databases belonging to the organization or user. See the documentation
Returns a list of groups belonging to the organization or user. See the documentation
Returns a list of organizations the authenticated user owns or is a member of. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
turso: {
type: "app",
app: "turso",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.turso.tech/v1/organizations`,
headers: {
Authorization: `Bearer ${this.turso.$auth.api_token}`,
},
})
},
})