A Node.js Express API that handles orders and inventory management with Kafka integration.
- Express server with TypeScript
- Kafka integration for event streaming
- PostgreSQL database connection using TypeORM
- Node.js
- PostgreSQL database
- Confluent Kafka Cluster
- npm
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
- Clone the repository:
git clone <repository-url>
- Install dependencies:
npm install
- Start the server:
npm start
/api/inventory
- Inventory management endpoints/api/order
- Order management endpoints
More detail in routes directory README
Uses TypeORM with PostgreSQL database including entities for:
- Orders
- Order Items
- Inventory
- Payment Transactions
Check tests directory README