Skip to content

Instantly share code, notes, and snippets.

View jpmeijers's full-sized avatar

JP Meijers jpmeijers

View GitHub Profile
@abzeede
abzeede / download_pdf_axios.js
Last active May 19, 2023 14:37
download pdf file with axios
export const getPdfInvoice = async () => {
let csrfToken = document.getElementsByName('csrf-token')[0].content
try {
const resp = await axios.get('ENDPOINT', {
responseType: 'blob',
})
// create temp download url
const downloadUrl = window.URL.createObjectURL(resp.data)
@dalenunns
dalenunns / SAResources.md
Last active June 19, 2024 16:17
List of SA Resources