motivational-quotes

Random Motivational Quotes API

A simple, lightweight Node.js API that serves random motivational quotes.

Features

Response Format

The API returns quotes in the following JSON format:

{
    "text": "Life is 10% what happens to you and 90% how you react to it.",
    "author": "Charles R. Swindoll"
}

Setup

  1. Clone this repository
  2. Install dependencies:
    npm install
    
  3. Start the server:
    npm start
    

For development with auto-reload:

npm run dev

API Endpoints

Local Development

The server will run on http://localhost:3000 by default. You can change the port by setting the PORT environment variable.