how to get onUploadProgress in axios?
I am little bit confused that how to upload progress evt with axios.Actually I am storing huge number files into aws s3.For that how to get uploaded progress I need this function onUploadProgress Currently my Post request is like this export function uploadtoCdnAndSaveToDb(data) { return dispatch => { dispatch(showUnderLoader(true)); return axios.post('/posttodb',{data:data}, ).then((response) => { console.log(response.data) }) } } christopher The Axios repository has a clear example on how to do this: https://github.com/mzabriskie/axios/blob/master/examples/upload/index.html Excerpt from the