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
Generates a new time entry in Timing app. See the documentation
Starts a new ongoing timer as per the current timestamp or specified start date. See the documentation
The Timing app provides detailed time tracking capabilities, enabling users to automatically log time spent on various tasks and improve productivity. Using Pipedream’s integration, one could build workflows that trigger when new time entries are created, sync time data with other project management tools, or compile reports for invoicing and accountability. It's all about harnessing the power of automated time tracking to streamline processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
timing: {
type: "app",
app: "timing",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://web.timingapp.com/api/v1/projects`,
headers: {
Authorization: `Bearer ${this.timing.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})