LIRI is a Language Interpretation and Recognition Interface. LIRI will be a command line node app that takes in parameters and gives you back data.
node liri.js spotify-this-song <insert song title>
This will show the following information about the song in your terminal/bash window
If no song is provided then your program will default to “The Sign” by Ace of Base
node liri.js concert-this <artist/band name here>
This will search the Bands in Town Artist Events API for an artist and render the following information about each event to the terminal:
node liri.js movie-this <insert movie title>
This will output the following information to your terminal/bash window:
If the user doesn’t type a movie in, the program will output data for the movie ‘Mr. Nobody.’
node liri.js do-what-it-says
Using the fs
Node package, LIRI will take the text inside of random.txt and then use it to call one of LIRI’s commands.
Right now it will run spotify-this-song
for “I Want it That Way,”.
And movie-this
for “star wars”.
Feel free to change the text in that document to test out the feature for other commands.
node liri.js spotify-this-song <insert song title>
node liri.js concert-this <artist/band name here>
node liri.js movie-this <insert movie title>
node liri.js do-what-it-says