This application was designed for the fullstack coding bootcamp at UNCC.
The Liri Node App makes it extremely easy to search the included APIs for information, simply by using the terminal. It currently includes Bands in Town (for upcoming concerts), Spotify (for song information), and OMDB (for movie information), but it could very easily be adapted to include any number of others by simply adding more searchType options in the switchcase and adding corresponding functions below.
This app is designed to make reviewing your search information extremely easy by logging your searches in your console, and additionally logging them in a log.txt document, with each new command giving line breaks for easy readability. The app also has built in functionality for reading outside documents (currently just a simple .txt file) and running searches based on their contents. It also has an additional command option “change,” which can be used to rewrite the .txt file, so you can run searches from it as well.
The spotify-this command uses the spotify API to search for a song provided by the user. The liri app will return the artist, the song name, a preview link to the song, and the album.
The concert-this command uses the Bandsintown API to search for a band provided by the user. The liri app will return the band or artist name, the venue name, the venue location, and the date of the event.
The movie-this command uses the OMDB API to search for a movie provided by the user. The liri app will return the title of movie, the release year, the IMDB rating, Rotten Tomatoes rating, country of production, language, plot, and actors in movie.
The do-what-it-says command will read from the random.txt file, then uses spotify-this-song by default to search for the song “I Want it That Way”.
The liri app keeps a log of the results that were displayed.