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


fetch('http://tauri.localhost/app.js')
  .then(r => r.text())
  .then(text => {
    const a = document.createElement('a');
    a.href = URL.createObjectURL(new Blob([text], {type: 'text/javascript'}));
    a.download = 'app.js';
    a.click();
  });