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
Retrieve historic, current, and forecast data globally. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
meteomatics_weather_api: {
type: "app",
app: "meteomatics_weather_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.meteomatics.com/mvt/isolines/2024-06-22T0Z/msl_pressure.hPa/style.json`,
params: {
access_token: `${this.meteomatics_weather_api.$auth.oauth_access_token}`,
},
})
},
})