Как создать всплывающую ссылку на скачивание в nodejs? - PullRequest
0 голосов
/ 24 июня 2019

Я хотел создать всплывающую ссылку для загрузки, в настоящее время она загружается непосредственно на мой компьютер, но я хотел создать всплывающую ссылку, чтобы при нажатии кнопки «ОК» она начала загрузку.

var video = youtubedl('https://www.youtube.com/watch?v=dPI-mRFEIH0',
  // Optional arguments passed to youtube-dl.
  ['--format=18'],
  // Additional options can be given for calling `child_process.execFile()`.
  { cwd: __dirname });

// Will be called when the download starts.
video.on('info', function(info) {
  console.log('Download started');
  console.log('filename: ' + info._filename);
    console.log('size: ' + info.size);
    video.pipe(fs.createWriteStream(info._filename));
...