with npm and PDF Munk?
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
Capture Screenshot of a Website URL into an image. See documentation
Converts a URL to a PDF file with customizable options. See documentation
Converts HTML/CSS content to a PDF file with customizable options. See documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    pdf_munk: {
      type: "app",
      app: "pdf_munk",
    }
  },
  async run({steps, $}) {
    const data = {
      "url": `https://pipedream.com`,
    }
    return await axios($, {
      method: "post",
      url: `https://pdfmunk.com/api/v1/generateImage`,
      headers: {
        "accept": `application/json`,
        "client-api-key": `${this.pdf_munk.$auth.api_key}`,
        "content-type": `application/json`,
      },
      data,
    })
  },
})