function download() { var content = 'Hello World!'; var blob = new Blob([content], {type: 'text/plain'}); saveAs(blob, 'file.txt'); }