rchipka / node-osmosis

Web scraper for NodeJS
4.11k stars 245 forks source link

not working, .data handler not called #256

Closed MaxmaxmaximusGitHub closed 4 years ago

MaxmaxmaximusGitHub commented 4 years ago

not working, .data handler not called

osmosis
.get('https://www.youtube.com/watch?v=tzvz1ARWGd8')
.find('title')
.set('title')
.log(console.log)   // включить логи
.data((data) => {
  console.log('data', data)
})
.done(() => {
  console.log('done')
})