The #-liri-node-app is a command line node app that takes in parameters and return information from Spotify for songs, Bands in Town for concerts, and OMDB for movies.
At CLI start, call different functions via different arguments. Based on that, the appropriate API is called.
-
Install required npm packages (see Technologies Used).
-
Load "node liri.js", desired action, and item of interest. The possible desired actions are:
- concert-this
- spotify-this-song
- movie-this
- do-what-it-says
Item of interest can include band, song, film title, and random.txt, respectively. i.e. "node liri.js concert-this Disturbed"
- Press 'Enter'
This will load the associated information.
Link to the github repository https://github.com/farrisat/bamazon.git
The npm packages used in this app were: -Node-Spotify-API -Axios -Moment -DotEnv
The APIs used were : -Node-Spotify-API -OMDB API -[Bands In Town API](http://www.artists.bandsintown.com/
Implemented code per the instructions.