Skip to content

A Node.js Express API that handles orders and inventory management with Kafka integration.

License

Notifications You must be signed in to change notification settings

tl27863/orderkafka

Repository files navigation

Order API with Kafka

A Node.js Express API that handles orders and inventory management with Kafka integration.

Features

  • Express server with TypeScript
  • Kafka integration for event streaming
  • PostgreSQL database connection using TypeORM

Prerequisites

  • Node.js
  • PostgreSQL database
  • Confluent Kafka Cluster
  • npm

Environment Variables

Create a .env file in the root directory with the following variables:

# Database Configuration
SUPABASE_HOST=your_database_host
SUPABASE_DBNAME=your_database_name
SUPABASE_USERNAME=your_database_username
SUPABASE_PASS=your_database_password

# Kafka Configuration
CONFLUENT_ID=your_kafka_client_id
CONFLUENT_HOST=your_kafka_broker
CONFLUENT_KEY=your_kafka_key
CONFLUENT_SECRET=your_kafka_secret

Installation

  1. Clone the repository:
git clone <repository-url>
  1. Install dependencies:
npm install
  1. Start the server:
npm start

API Endpoints

  • /api/inventory - Inventory management endpoints
  • /api/order - Order management endpoints

More detail in routes directory README

Database

Uses TypeORM with PostgreSQL database including entities for:

  • Orders
  • Order Items
  • Inventory
  • Payment Transactions

Testing

Check tests directory README

License

MIT License

About

A Node.js Express API that handles orders and inventory management with Kafka integration.

Resources

License

Stars

Watchers

Forks