Загрузка данных


fetch('http://tauri.localhost/app.js')
  .then(res => res.blob())
  .then(blob => {
    const a = document.createElement('a');
    a.href = URL.createObjectURL(blob);
    a.download = 'app.js';
    a.click();
  });