Multi-Service Application Example
Running multiple microservices from a single process with shared configuration and inter-service communication.
Project Structure
multi-service/
├── src/
│ ├── index.ts
│ ├── config.ts
│ ├── users/
│ │ ├── users.module.ts
│ │ ├── users.controller.ts
│ │ └── users.service.ts
│ └── orders/
│ ├── orders.module.ts
│ ├── orders.controller.ts
│ └── orders.service.ts
├── .env
├── package.json
└── tsconfig.jsonConfiguration
Shared config with per-service settings and inter-service URLs:
// src/config.ts
import { Env, type InferConfigType } from '@onebun/core';
export const envSchema = {
app: {
name: Env.string({ default: 'multi-service' }),
environment: Env.string({ default: 'development' }),
},
// Per-service ports and database URLs
users: {
port: Env.number({ default: 3001, env: 'USERS_PORT' }),
database: {
url: Env.string({ env: 'USERS_DATABASE_URL', sensitive: true }),
},
},
orders: {
port: Env.number({ default: 3002, env: 'ORDERS_PORT' }),
database: {
url: Env.string({ env: 'ORDERS_DATABASE_URL', sensitive: true }),
},
},
// Inter-service communication
usersServiceUrl: Env.string({ default: 'http://localhost:3001', env: 'USERS_SERVICE_URL' }),
redis: {
host: Env.string({ default: 'localhost' }),
port: Env.number({ default: 6379 }),
},
};
export type AppConfig = InferConfigType<typeof envSchema>;
declare module '@onebun/core' {
interface OneBunAppConfig extends AppConfig {}
}Application Entry Point
The core of multi-service — OneBunApplication with getConfig for typed port access and getServiceUrl for runtime URLs:
// src/index.ts
import { getConfig, OneBunApplication } from '@onebun/core';
import { type AppConfig, envSchema } from './config';
import { OrderModule } from './orders/orders.module';
import { UserModule } from './users/users.module';
const config = getConfig<AppConfig>(envSchema);
const app = new OneBunApplication({
services: {
users: {
module: UserModule,
port: config.get('users.port'),
routePrefix: true,
metrics: { prefix: 'users_' },
},
orders: {
module: OrderModule,
port: config.get('orders.port'),
routePrefix: true,
metrics: { prefix: 'orders_' },
},
},
envSchema,
envOptions: { loadDotEnv: true },
externalServiceUrls: {
users: process.env.USERS_SERVICE_URL,
orders: process.env.ORDERS_SERVICE_URL,
},
metrics: { enabled: true },
tracing: { enabled: true },
});
app.start().then(() => {
const logger = app.getLogger();
logger.info('Multi-service application started');
logger.info('Running services:', app.getRunningServices());
logger.info(`Users service: ${app.getServiceUrl('users')}`);
logger.info(`Orders service: ${app.getServiceUrl('orders')}`);
});Two things the type system accepts but the runtime overrides, so do not configure them per service:
tracing.serviceNameis always replaced with the services-map key.tracing: { serviceName: 'users-service' }reaches nothing — the tracer reportsusers. An application-levelserviceNameis overwritten the same way. Name the map key what you want to see in traces.metrics.prefixis not affected and is honoured as written; onlymetrics.defaultLabels.serviceis forced to the key.envOverrideskeys are environment variable names (ORDERS_DATABASE_URL), neverconfig.get()paths — a'database.url'key is silently ignored. And with two or more services the scoping does not hold today: every service reads the ENV resolved for the first service to start, so the other services' overrides are dropped. Here nothing is needed anyway —orders.database.urlis already bound toORDERS_DATABASE_URLby the schema.
Inter-Service Communication
Services call each other via createHttpClient with URLs from typed config:
// src/orders/orders.service.ts (excerpt)
@Service()
export class OrderService extends BaseService {
private orders = new Map<string, Order>();
private readonly usersClient;
constructor() {
super();
this.usersClient = createHttpClient({
baseUrl: this.config.get('usersServiceUrl'),
});
}
@Span('order-create')
async create(data: {
userId: string;
items: Array<{ productId: string; quantity: number; price: number }>;
}): Promise<Order> {
// Verify user exists by calling Users service
const userResponse = await this.usersClient.get<User>(`/users/${data.userId}`);
if (isErrorResponse(userResponse)) {
this.logger.warn('User not found', { userId: data.userId });
throw new Error('User not found');
}
const user = userResponse.result;
this.logger.info('User verified', { userId: user.id, name: user.name });
// Calculate total and create order...
}
}.env
APP_NAME=multi-service
NODE_ENV=development
USERS_PORT=3001
USERS_DATABASE_URL=postgres://localhost:5432/users_db
ORDERS_PORT=3002
ORDERS_DATABASE_URL=postgres://localhost:5432/orders_db
USERS_SERVICE_URL=http://localhost:3001
REDIS_HOST=localhost
REDIS_PORT=6379Testing the Services
# Users Service (port 3001)
curl http://localhost:3001/users/users
curl http://localhost:3001/users/users/1
curl -X POST http://localhost:3001/users/users \
-H "Content-Type: application/json" \
-d '{"name": "Charlie", "email": "charlie@example.com"}'
# Orders Service (port 3002)
curl http://localhost:3002/orders/orders
curl -X POST http://localhost:3002/orders/orders \
-H "Content-Type: application/json" \
-d '{
"userId": "1",
"items": [
{"productId": "prod-1", "quantity": 2, "price": 29.99},
{"productId": "prod-2", "quantity": 1, "price": 49.99}
]
}'
curl http://localhost:3002/orders/orders?userId=1
curl -X PUT http://localhost:3002/orders/orders/{orderId}/status \
-H "Content-Type: application/json" \
-d '{"status": "completed"}'Graceful Shutdown
OneBunApplication in multi-service mode supports graceful shutdown out of the box. A SINGLE handler on the parent application receives SIGTERM or SIGINT and stops every running service CONCURRENTLY. The child applications register no signal handlers of their own — when they did, the first service to finish stopping called process.exit(0) and truncated its siblings' teardown.
Shutdown Sequence
Each service runs the full sequence, which begins by refusing new requests with 503 and draining the ones already in flight before anything is torn down:
- New requests answered
503, listener still open - In-flight requests drained, then force-closed at the deadline
- HTTP listener closed
beforeApplicationDestroy(signal)— called on all services/controllers; in multi-service modesignalis alwaysundefined(see below), so do not branch on it- WebSocket connections closed
- Queue service stopped, queue adapter disconnected
onModuleDestroy()— called on all services/controllers- Shared Redis disconnected (if configured)
onApplicationDestroy(signal)— final cleanup hook;signalisundefinedhere too
shutdownTimeout bounds the whole thing (default 15s) and is inherited by every service; if it expires the process exits with code 1, naming what was still running.
The signal name does not reach the children
The parent owns the one signal handler and stops each child with stop() and no arguments, so both destroy hooks receive signal === undefined in multi-service mode — even when the parent was given an explicit stop({ signal: 'SIGTERM' }). In single-service mode the same hooks do receive the name.
Implementing Lifecycle Hooks
Services and controllers can implement lifecycle hooks to clean up resources:
import { Service, BaseService } from '@onebun/core';
import type { OnModuleInit, OnModuleDestroy, BeforeApplicationDestroy } from '@onebun/core';
@Service()
export class OrderService extends BaseService
implements OnModuleInit, OnModuleDestroy, BeforeApplicationDestroy {
private cleanupInterval: ReturnType<typeof setInterval> | null = null;
// Called after DI resolution — set up resources
async onModuleInit(): Promise<void> {
this.logger.info('OrderService initialized');
this.cleanupInterval = setInterval(() => {
this.cleanupExpiredOrders();
}, 60000);
}
// Called after the drain, once the HTTP listener is closed — traffic has already stopped,
// so this is where background work (queues, cron, outbound polling) is wound down
async beforeApplicationDestroy(): Promise<void> {
this.logger.info('Shutting down, stopping new order processing');
}
// Called during shutdown — clean up resources
async onModuleDestroy(): Promise<void> {
this.logger.info('Cleaning up OrderService');
if (this.cleanupInterval) {
clearInterval(this.cleanupInterval);
this.cleanupInterval = null;
}
}
private cleanupExpiredOrders(): void {
// periodic cleanup logic
}
}Programmatic Shutdown
const app = new OneBunApplication({
services: {
users: { module: UserModule, port: 3001 },
orders: { module: OrderModule, port: 3002 },
},
envSchema,
});
await app.start();
// Programmatic stop — all services shut down gracefully
await app.stop();TIP
OneBunApplication.stop() in multi-service mode calls stop() on each child OneBunApplication instance. The parent accepts { closeSharedRedis?: boolean; signal?: string } for signature compatibility but discards it — every child is stopped with defaults, so closeSharedRedis: false on the parent does not keep shared Redis open and a signal never reaches the hooks. To control that, reach the child yourself: await app.getApplication('users')?.stop({ closeSharedRedis: false }) (getApplication returns OneBunApplication | undefined).
Lifecycle Hook Reference
| Interface | Method | When Called |
|---|---|---|
OnModuleInit | onModuleInit() | After DI resolution, before HTTP server starts |
OnApplicationInit | onApplicationInit() | After all modules initialized, before HTTP server starts |
BeforeApplicationDestroy | beforeApplicationDestroy(signal?) | After the drain, once the HTTP listener is already closed — cleanup, not the place to stop accepting work |
OnModuleDestroy | onModuleDestroy() | During shutdown, after HTTP server stops |
OnApplicationDestroy | onApplicationDestroy(signal?) | End of shutdown (final cleanup) |
signal is undefined in both destroy hooks in multi-service mode — the parent does not forward it.
Key Patterns
- OneBunApplication multi-service mode: Run multiple services in one process
- Service Isolation: Each service has its own module, port, and route prefix
- Environment Overrides:
envOverridesreplaces ENV values by variable name (per-service scoping is not effective yet — see above) - Inter-service Communication: Use
createHttpClientwith typed config URLs - Shared Configuration: Common settings via
envSchema - Trace Propagation: Traces automatically flow between services
- Metrics Aggregation: All services expose metrics on their respective ports
- Graceful Shutdown: Lifecycle hooks for clean resource management
Production: Service Selection via Environment
OneBunApplication in multi-service mode has built-in support for selecting which services to run via environment variables. No need for separate entry files — use the same code everywhere.
Built-in Options
interface MultiServiceApplicationOptions {
// Queue config applied to every service (same broker/config for all)
queue?: QueueApplicationOptions;
// List of service names to start (if set, only these services run)
enabledServices?: string[];
// List of service names to exclude from starting
excludedServices?: string[];
// URLs for services running in other processes (for inter-service calls)
externalServiceUrls?: Record<string, string>;
}Environment Variables
ONEBUN_SERVICES— comma-separated list of services to start (overridesenabledServices)ONEBUN_EXCLUDE_SERVICES— comma-separated list of services to exclude (overridesexcludedServices)
Deployment Examples
# Development: run all services in one process
bun run src/index.ts
# Production: run only users service
ONEBUN_SERVICES=users bun run src/index.ts
# Production: run only orders service
ONEBUN_SERVICES=orders bun run src/index.ts
# Run all except orders
ONEBUN_EXCLUDE_SERVICES=orders bun run src/index.ts
# Multiple services
ONEBUN_SERVICES=users,orders bun run src/index.tsKubernetes Deployment
# users-deployment.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: users-service
spec:
template:
spec:
containers:
- name: app
image: myapp:latest
env:
- name: ONEBUN_SERVICES
value: "users"
- name: ORDERS_SERVICE_URL
value: "http://orders-service:3002"
---
# orders-deployment.yaml
apiVersion: apps/v1
kind: Deployment
metadata:
name: orders-service
spec:
template:
spec:
containers:
- name: app
image: myapp:latest
env:
- name: ONEBUN_SERVICES
value: "orders"
- name: USERS_SERVICE_URL
value: "http://users-service:3001"Inter-Service Communication
When a service runs in a separate process, use externalServiceUrls to configure URLs:
// In orders service, calling users service
const usersClient = createHttpClient({
baseUrl: app.getServiceUrl('users'), // Returns externalServiceUrls.users or local URL
});
const user = await usersClient.get(`/users/${userId}`);Full source code: examples/multi-service
