I'm still learning Node.js
I have been able to run some scripts successuly before.
I'm trying to use a new module I found (Github https://github.com/facundoolano/app-store-scraper)
I am running into an issue when trying to run one of the functions.
If I try one of the functions, like here:
var store = require('app-store-scraper');
store.suggest({term: 'candy'}).then(console.log).catch(console.log);
Which I save in search.js
If I then execute:
node search.js
the terminal returns:
[]
What am I missing?