LIRI-Node-App

LIRI-NODE-APP

Overview

LIRI is a Node.js app for retrieving entertainment information using NPM packages installed to enhance Node.

This app allows a user to choose from one of four commands:

  1. [concert-this] (associated with the Bands In Town API)
  2. [spotify-this-song] (associated with the Spotify API)
  3. [movie-this] (associated with the OMDb API)
  4. [do-what-it-says] (associated with a combination of the Spotify API and FS API)

Running the application

1. Install Node

2. Clone the applications

Clone the application from the following location… (https://github.com/cbessjr/LIRI-Node-App

3. Install NPM Packages

Install the packages from the terminal in the folder the application was cloned.

4. Acquire API key(s)

//Code Start Below #### Spotify API keys

SPOTIFY_ID= key SPOTIFY_SECRET= secret

//Code Ends Here

#### Bands In Town API Key

Provided in-code

#### OMDb API Key

Provided in-code

### 5. Using the Application

Once the required packages have been installed, use the following commands to pull song, concert, and movie data using the following syntax for each command:

Code execution examples can be seen in the LIRI-Node-App Flow Documentation.docx file

### Future Updates