Usage
Make queries to the API using a URI with the following format:
https://domain.com[endpoint]
                    See below for a list of available endpoints
Endpoints
GET all quotes
/api/quotes
                GET all quotes from a specified year
/api/quotes/:year
                GET all quotes that don't come with year timestamps
/api/quotes/unstamped
                GET a quote using its ID number
/api/quote/:id
                GET a random quote
/api/quote
                Run Locally
Clone the project repo
$ git clone https://github.com/alexraskin/kimiquotes.git
                Install the dependencies
                        $ cd kimiquotes
                        
$ npm install
                    
                Start development server
$ npm run dev