Skip to content

Instantly share code, notes, and snippets.

View larswaechter's full-sized avatar
👨‍💻
Focusing

Lars Wächter larswaechter

👨‍💻
Focusing
View GitHub Profile
@virolea
virolea / upload.js
Last active March 15, 2024 13:45
Tracking file upload progress using axios
upload(files) {
const config = {
onUploadProgress: function(progressEvent) {
var percentCompleted = Math.round((progressEvent.loaded * 100) / progressEvent.total)
console.log(percentCompleted)
}
}
let data = new FormData()
data.append('file', files[0])