How to Display Smooth, Continuous File Processing Progress?
I’m building an Electron app where I need to process large files/folders by splitting them into smaller chunks (ex: 512MB each) and display real-time progress to the user. However, the progress percentage displayed in the console updates irregularly and jumps in large increments (30% → 57% → 91% → 100%).
I would like the progress updates to appear smoother and more gradual, such as 0% → 1% → 2% → … → 100%.