Skip to content

Instantly share code, notes, and snippets.

View nt66's full-sized avatar
🏆
Focusing

hualingfeng nt66

🏆
Focusing
  • Linktivity
  • Tokyo
View GitHub Profile
@jbutko
jbutko / handle-file-download-react-axios.js
Last active January 31, 2024 04:48
React, JS, Axios: Download blob file (PDF...)
import axios, { AxiosResponse } from 'axios';
import { get } from 'lodash-es';
const rest = axios.create({
baseURL: 'some base URL goes here',
});
// this one send file as Blob type
const getPdf = () => (
rest.get(`/get-pdf`, {