The immediately productive, shareable cloud database. Bit.io is a zero-config, scalable cloud database with the social and community features of GitHub.
The Bit.io API lets you build applications that interact with the Bit.io platform. Using the API, you can do things like:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
bit_io: {
type: "app",
app: "bit_io",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.bit.io/api/v1beta/repos`,
headers: {
Authorization: `Bearer ${this.bit_io.$auth.api_key}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})