@hazeljs/discovery 0.2.0-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (78) hide show
  1. package/LICENSE +192 -0
  2. package/README.md +450 -0
  3. package/dist/__tests__/consul-backend.test.d.ts +6 -0
  4. package/dist/__tests__/consul-backend.test.d.ts.map +1 -0
  5. package/dist/__tests__/consul-backend.test.js +300 -0
  6. package/dist/__tests__/decorators.test.d.ts +5 -0
  7. package/dist/__tests__/decorators.test.d.ts.map +1 -0
  8. package/dist/__tests__/decorators.test.js +72 -0
  9. package/dist/__tests__/discovery-client.test.d.ts +5 -0
  10. package/dist/__tests__/discovery-client.test.d.ts.map +1 -0
  11. package/dist/__tests__/discovery-client.test.js +142 -0
  12. package/dist/__tests__/kubernetes-backend.test.d.ts +6 -0
  13. package/dist/__tests__/kubernetes-backend.test.d.ts.map +1 -0
  14. package/dist/__tests__/kubernetes-backend.test.js +261 -0
  15. package/dist/__tests__/load-balancer-strategies.test.d.ts +5 -0
  16. package/dist/__tests__/load-balancer-strategies.test.d.ts.map +1 -0
  17. package/dist/__tests__/load-balancer-strategies.test.js +234 -0
  18. package/dist/__tests__/memory-backend.test.d.ts +5 -0
  19. package/dist/__tests__/memory-backend.test.d.ts.map +1 -0
  20. package/dist/__tests__/memory-backend.test.js +246 -0
  21. package/dist/__tests__/redis-backend.test.d.ts +6 -0
  22. package/dist/__tests__/redis-backend.test.d.ts.map +1 -0
  23. package/dist/__tests__/redis-backend.test.js +280 -0
  24. package/dist/__tests__/service-client.test.d.ts +5 -0
  25. package/dist/__tests__/service-client.test.d.ts.map +1 -0
  26. package/dist/__tests__/service-client.test.js +216 -0
  27. package/dist/__tests__/service-registry.test.d.ts +5 -0
  28. package/dist/__tests__/service-registry.test.d.ts.map +1 -0
  29. package/dist/__tests__/service-registry.test.js +65 -0
  30. package/dist/backends/consul-backend.d.ts +115 -0
  31. package/dist/backends/consul-backend.d.ts.map +1 -0
  32. package/dist/backends/consul-backend.js +259 -0
  33. package/dist/backends/kubernetes-backend.d.ts +103 -0
  34. package/dist/backends/kubernetes-backend.d.ts.map +1 -0
  35. package/dist/backends/kubernetes-backend.js +153 -0
  36. package/dist/backends/memory-backend.d.ts +21 -0
  37. package/dist/backends/memory-backend.d.ts.map +1 -0
  38. package/dist/backends/memory-backend.js +86 -0
  39. package/dist/backends/redis-backend.d.ts +76 -0
  40. package/dist/backends/redis-backend.d.ts.map +1 -0
  41. package/dist/backends/redis-backend.js +220 -0
  42. package/dist/backends/registry-backend.d.ts +39 -0
  43. package/dist/backends/registry-backend.d.ts.map +1 -0
  44. package/dist/backends/registry-backend.js +5 -0
  45. package/dist/client/discovery-client.d.ts +49 -0
  46. package/dist/client/discovery-client.d.ts.map +1 -0
  47. package/dist/client/discovery-client.js +123 -0
  48. package/dist/client/service-client.d.ts +48 -0
  49. package/dist/client/service-client.d.ts.map +1 -0
  50. package/dist/client/service-client.js +155 -0
  51. package/dist/decorators/inject-service-client.decorator.d.ts +16 -0
  52. package/dist/decorators/inject-service-client.decorator.d.ts.map +1 -0
  53. package/dist/decorators/inject-service-client.decorator.js +24 -0
  54. package/dist/decorators/service-registry.decorator.d.ts +11 -0
  55. package/dist/decorators/service-registry.decorator.d.ts.map +1 -0
  56. package/dist/decorators/service-registry.decorator.js +20 -0
  57. package/dist/index.d.ts +21 -0
  58. package/dist/index.d.ts.map +1 -0
  59. package/dist/index.js +51 -0
  60. package/dist/load-balancer/strategies.d.ts +82 -0
  61. package/dist/load-balancer/strategies.d.ts.map +1 -0
  62. package/dist/load-balancer/strategies.js +209 -0
  63. package/dist/registry/service-registry.d.ts +51 -0
  64. package/dist/registry/service-registry.d.ts.map +1 -0
  65. package/dist/registry/service-registry.js +159 -0
  66. package/dist/types/index.d.ts +61 -0
  67. package/dist/types/index.d.ts.map +1 -0
  68. package/dist/types/index.js +14 -0
  69. package/dist/utils/filter.d.ts +10 -0
  70. package/dist/utils/filter.d.ts.map +1 -0
  71. package/dist/utils/filter.js +39 -0
  72. package/dist/utils/logger.d.ts +21 -0
  73. package/dist/utils/logger.d.ts.map +1 -0
  74. package/dist/utils/logger.js +34 -0
  75. package/dist/utils/validation.d.ts +36 -0
  76. package/dist/utils/validation.d.ts.map +1 -0
  77. package/dist/utils/validation.js +109 -0
  78. package/package.json +81 -0
package/LICENSE ADDED
@@ -0,0 +1,192 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ Copyright 2024 HazelJS Team
6
+
7
+ Licensed under the Apache License, Version 2.0 (the "License");
8
+ you may not use this file except in compliance with the License.
9
+ You may obtain a copy of the License at
10
+
11
+ http://www.apache.org/licenses/LICENSE-2.0
12
+
13
+ Unless required by applicable law or agreed to in writing, software
14
+ distributed under the License is distributed on an "AS IS" BASIS,
15
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16
+ See the License for the specific language governing permissions and
17
+ limitations under the License.
18
+
19
+ ---
20
+
21
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
22
+
23
+ 1. Definitions.
24
+
25
+ "License" shall mean the terms and conditions for use, reproduction,
26
+ and distribution as defined by Sections 1 through 9 of this document.
27
+
28
+ "Licensor" shall mean the copyright owner or entity authorized by
29
+ the copyright owner that is granting the License.
30
+
31
+ "Legal Entity" shall mean the union of the acting entity and all
32
+ other entities that control, are controlled by, or are under common
33
+ control with that entity. For the purposes of this definition,
34
+ "control" means (i) the power, direct or indirect, to cause the
35
+ direction or management of such entity, whether by contract or
36
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
37
+ outstanding shares, or (iii) beneficial ownership of such entity.
38
+
39
+ "You" (or "Your") shall mean an individual or Legal Entity
40
+ exercising permissions granted by this License.
41
+
42
+ "Source" form shall mean the preferred form for making modifications,
43
+ including but not limited to software source code, documentation
44
+ source, and configuration files.
45
+
46
+ "Object" form shall mean any form resulting from mechanical
47
+ transformation or translation of a Source form, including but
48
+ not limited to compiled object code, generated documentation,
49
+ and conversions to other media types.
50
+
51
+ "Work" shall mean the work of authorship, whether in Source or
52
+ Object form, made available under the License, as indicated by a
53
+ copyright notice that is included in or attached to the work
54
+ (an example is provided in the Appendix below).
55
+
56
+ "Derivative Works" shall mean any work, whether in Source or Object
57
+ form, that is based on (or derived from) the Work and for which the
58
+ editorial revisions, annotations, elaborations, or other modifications
59
+ represent, as a whole, an original work of authorship. For the purposes
60
+ of this License, Derivative Works shall not include works that remain
61
+ separable from, or merely link (or bind by name) to the interfaces of,
62
+ the Work and Derivative Works thereof.
63
+
64
+ "Contribution" shall mean any work of authorship, including
65
+ the original version of the Work and any modifications or additions
66
+ to that Work or Derivative Works thereof, that is intentionally
67
+ submitted to Licensor for inclusion in the Work by the copyright owner
68
+ or by an individual or Legal Entity authorized to submit on behalf of
69
+ the copyright owner. For the purposes of this definition, "submitted"
70
+ means any form of electronic, verbal, or written communication sent
71
+ to the Licensor or its representatives, including but not limited to
72
+ communication on electronic mailing lists, source code control systems,
73
+ and issue tracking systems that are managed by, or on behalf of, the
74
+ Licensor for the purpose of discussing and improving the Work, but
75
+ excluding communication that is conspicuously marked or otherwise
76
+ designated in writing by the copyright owner as "Not a Contribution."
77
+
78
+ "Contributor" shall mean Licensor and any individual or Legal Entity
79
+ on behalf of whom a Contribution has been received by Licensor and
80
+ subsequently incorporated within the Work.
81
+
82
+ 2. Grant of Copyright License. Subject to the terms and conditions of
83
+ this License, each Contributor hereby grants to You a perpetual,
84
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
85
+ copyright license to reproduce, prepare Derivative Works of,
86
+ publicly display, publicly perform, sublicense, and distribute the
87
+ Work and such Derivative Works in Source or Object form.
88
+
89
+ 3. Grant of Patent License. Subject to the terms and conditions of
90
+ this License, each Contributor hereby grants to You a perpetual,
91
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
92
+ (except as stated in this section) patent license to make, have made,
93
+ use, offer to sell, sell, import, and otherwise transfer the Work,
94
+ where such license applies only to those patent claims licensable
95
+ by such Contributor that are necessarily infringed by their
96
+ Contribution(s) alone or by combination of their Contribution(s)
97
+ with the Work to which such Contribution(s) was submitted. If You
98
+ institute patent litigation against any entity (including a
99
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
100
+ or a Contribution incorporated within the Work constitutes direct
101
+ or contributory patent infringement, then any patent licenses
102
+ granted to You under this License for that Work shall terminate
103
+ as of the date such litigation is filed.
104
+
105
+ 4. Redistribution. You may reproduce and distribute copies of the
106
+ Work or Derivative Works thereof in any medium, with or without
107
+ modifications, and in Source or Object form, provided that You
108
+ meet the following conditions:
109
+
110
+ (a) You must give any other recipients of the Work or
111
+ Derivative Works a copy of this License; and
112
+
113
+ (b) You must cause any modified files to carry prominent notices
114
+ stating that You changed the files; and
115
+
116
+ (c) You must retain, in the Source form of any Derivative Works
117
+ that You distribute, all copyright, patent, trademark, and
118
+ attribution notices from the Source form of the Work,
119
+ excluding those notices that do not pertain to any part of
120
+ the Derivative Works; and
121
+
122
+ (d) If the Work includes a "NOTICE" text file as part of its
123
+ distribution, then any Derivative Works that You distribute must
124
+ include a readable copy of the attribution notices contained
125
+ within such NOTICE file, excluding those notices that do not
126
+ pertain to any part of the Derivative Works, in at least one
127
+ of the following places: within a NOTICE text file distributed
128
+ as part of the Derivative Works; within the Source form or
129
+ documentation, if provided along with the Derivative Works; or,
130
+ within a display generated by the Derivative Works, if and
131
+ wherever such third-party notices normally appear. The contents
132
+ of the NOTICE file are for informational purposes only and
133
+ do not modify the License. You may add Your own attribution
134
+ notices within Derivative Works that You distribute, alongside
135
+ or as an addendum to the NOTICE text from the Work, provided
136
+ that such additional attribution notices cannot be construed
137
+ as modifying the License.
138
+
139
+ You may add Your own copyright statement to Your modifications and
140
+ may provide additional or different license terms and conditions
141
+ for use, reproduction, or distribution of Your modifications, or
142
+ for any such Derivative Works as a whole, provided Your use,
143
+ reproduction, and distribution of the Work otherwise complies with
144
+ the conditions stated in this License.
145
+
146
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
147
+ any Contribution intentionally submitted for inclusion in the Work
148
+ by You to the Licensor shall be under the terms and conditions of
149
+ this License, without any additional terms or conditions.
150
+ Notwithstanding the above, nothing herein shall supersede or modify
151
+ the terms of any separate license agreement you may have executed
152
+ with Licensor regarding such Contributions.
153
+
154
+ 6. Trademarks. This License does not grant permission to use the trade
155
+ names, trademarks, service marks, or product names of the Licensor,
156
+ except as required for reasonable and customary use in describing the
157
+ origin of the Work and reproducing the content of the NOTICE file.
158
+
159
+ 7. Disclaimer of Warranty. Unless required by applicable law or
160
+ agreed to in writing, Licensor provides the Work (and each
161
+ Contributor provides its Contributions) on an "AS IS" BASIS,
162
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
163
+ implied, including, without limitation, any warranties or conditions
164
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
165
+ PARTICULAR PURPOSE. You are solely responsible for determining the
166
+ appropriateness of using or redistributing the Work and assume any
167
+ risks associated with Your exercise of permissions under this License.
168
+
169
+ 8. Limitation of Liability. In no event and under no legal theory,
170
+ whether in tort (including negligence), contract, or otherwise,
171
+ unless required by applicable law (such as deliberate and grossly
172
+ negligent acts) or agreed to in writing, shall any Contributor be
173
+ liable to You for damages, including any direct, indirect, special,
174
+ incidental, or consequential damages of any character arising as a
175
+ result of this License or out of the use or inability to use the
176
+ Work (including but not limited to damages for loss of goodwill,
177
+ work stoppage, computer failure or malfunction, or any and all
178
+ other commercial damages or losses), even if such Contributor
179
+ has been advised of the possibility of such damages.
180
+
181
+ 9. Accepting Warranty or Additional Liability. While redistributing
182
+ the Work or Derivative Works thereof, You may choose to offer,
183
+ and charge a fee for, acceptance of support, warranty, indemnity,
184
+ or other liability obligations and/or rights consistent with this
185
+ License. However, in accepting such obligations, You may act only
186
+ on Your own behalf and on Your sole responsibility, not on behalf
187
+ of any other Contributor, and only if You agree to indemnify,
188
+ defend, and hold each Contributor harmless for any liability
189
+ incurred by, or claims asserted against, such Contributor by reason
190
+ of your accepting any such warranty or additional liability.
191
+
192
+ END OF TERMS AND CONDITIONS
package/README.md ADDED
@@ -0,0 +1,450 @@
1
+ # @hazeljs/discovery
2
+
3
+ **Microservices that find each other.**
4
+
5
+ Service registry, health checks, load balancing. Round Robin, Least Connections, Zone Aware — 6 strategies. Memory, Redis, Consul, or Kubernetes. Eureka-style, without the Java.
6
+
7
+ [![npm version](https://img.shields.io/npm/v/@hazeljs/discovery.svg)](https://www.npmjs.com/package/@hazeljs/discovery)
8
+ [![npm downloads](https://img.shields.io/npm/dm/@hazeljs/discovery)](https://www.npmjs.com/package/@hazeljs/discovery)
9
+ [![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
10
+
11
+ ## Features
12
+
13
+ - **Service Registration & Discovery** - Automatic service registration with health checks
14
+ - **Load Balancing** - 6 built-in strategies (Round Robin, Random, Least Connections, Weighted Round Robin, IP Hash, Zone Aware)
15
+ - **Health Checks** - Automatic health monitoring with heartbeat
16
+ - **Service Filtering** - Filter by zone, tags, metadata, and status
17
+ - **Multiple Backends** - Memory (dev), Redis, Consul, Kubernetes
18
+ - **Decorator Support** - Clean integration with HazelJS apps
19
+ - **Caching** - Built-in service discovery caching with auto-refresh
20
+ - **Auto-Cleanup** - Automatic removal of expired instances
21
+ - **Smart Retries** - Only retries on transient/network errors, not client errors
22
+ - **Pluggable Logging** - Bring your own logger or use the built-in console logger
23
+ - **Config Validation** - Runtime validation of all configuration objects
24
+ - **Graceful Shutdown** - Proper cleanup of intervals, connections, and resources
25
+
26
+ ## Installation
27
+
28
+ ```bash
29
+ npm install @hazeljs/discovery
30
+ ```
31
+
32
+ ### Optional peer dependencies
33
+
34
+ Install the backend you need:
35
+
36
+ ```bash
37
+ # Redis backend
38
+ npm install ioredis
39
+
40
+ # Consul backend
41
+ npm install consul
42
+
43
+ # Kubernetes backend
44
+ npm install @kubernetes/client-node
45
+ ```
46
+
47
+ ## Quick Start
48
+
49
+ ### 1. Register a Service
50
+
51
+ ```typescript
52
+ import { ServiceRegistry } from '@hazeljs/discovery';
53
+
54
+ const registry = new ServiceRegistry({
55
+ name: 'user-service',
56
+ port: 3000,
57
+ host: 'localhost',
58
+ healthCheckPath: '/health',
59
+ healthCheckInterval: 30000,
60
+ metadata: { version: '1.0.0' },
61
+ zone: 'us-east-1',
62
+ tags: ['api', 'users'],
63
+ });
64
+
65
+ await registry.register();
66
+
67
+ // On shutdown
68
+ await registry.deregister();
69
+ ```
70
+
71
+ ### 2. Discover Services
72
+
73
+ ```typescript
74
+ import { DiscoveryClient } from '@hazeljs/discovery';
75
+
76
+ const client = new DiscoveryClient({
77
+ cacheEnabled: true,
78
+ cacheTTL: 30000,
79
+ refreshInterval: 15000, // auto-refresh cache every 15s
80
+ });
81
+
82
+ // Get all instances
83
+ const instances = await client.getInstances('user-service');
84
+
85
+ // Get one instance with load balancing
86
+ const instance = await client.getInstance('user-service', 'round-robin');
87
+
88
+ // On shutdown
89
+ client.close();
90
+ ```
91
+
92
+ ### 3. Call Services
93
+
94
+ ```typescript
95
+ import { ServiceClient } from '@hazeljs/discovery';
96
+
97
+ const serviceClient = new ServiceClient(discoveryClient, {
98
+ serviceName: 'user-service',
99
+ loadBalancingStrategy: 'round-robin',
100
+ timeout: 5000,
101
+ retries: 3,
102
+ retryDelay: 1000,
103
+ });
104
+
105
+ // Automatic service discovery + load balancing + smart retries
106
+ const user = await serviceClient.get('/users/123');
107
+ const created = await serviceClient.post('/users', { name: 'John' });
108
+ ```
109
+
110
+ ### 4. With HazelJS Decorators
111
+
112
+ ```typescript
113
+ import { ServiceRegistryDecorator, InjectServiceClient } from '@hazeljs/discovery';
114
+
115
+ @ServiceRegistryDecorator({
116
+ name: 'order-service',
117
+ port: 3001,
118
+ healthCheckPath: '/health',
119
+ })
120
+ export class AppModule {}
121
+
122
+ @Injectable()
123
+ export class OrderService {
124
+ constructor(
125
+ @InjectServiceClient('user-service')
126
+ private userClient: ServiceClient
127
+ ) {}
128
+
129
+ async createOrder(userId: string) {
130
+ const user = await this.userClient.get(`/users/${userId}`);
131
+ // ... create order
132
+ }
133
+ }
134
+ ```
135
+
136
+ ## Load Balancing Strategies
137
+
138
+ ### Round Robin
139
+
140
+ ```typescript
141
+ const instance = await client.getInstance('service-name', 'round-robin');
142
+ ```
143
+
144
+ ### Random
145
+
146
+ ```typescript
147
+ const instance = await client.getInstance('service-name', 'random');
148
+ ```
149
+
150
+ ### Least Connections
151
+
152
+ Tracks active connections per instance. When used with `ServiceClient`, connection counts are automatically incremented/decremented on each request.
153
+
154
+ ```typescript
155
+ const instance = await client.getInstance('service-name', 'least-connections');
156
+ ```
157
+
158
+ ### Weighted Round Robin
159
+
160
+ ```typescript
161
+ // Set weight in service metadata
162
+ const registry = new ServiceRegistry({
163
+ name: 'api-service',
164
+ port: 3000,
165
+ metadata: { weight: 5 }, // Higher weight = more traffic
166
+ });
167
+ ```
168
+
169
+ ### IP Hash (Sticky Sessions)
170
+
171
+ ```typescript
172
+ const instance = await client.getInstance('service-name', 'ip-hash');
173
+ ```
174
+
175
+ ### Zone Aware
176
+
177
+ ```typescript
178
+ const factory = client.getLoadBalancerFactory();
179
+ const strategy = factory.create('zone-aware', { zone: 'us-east-1' });
180
+ ```
181
+
182
+ ## Service Filtering
183
+
184
+ ```typescript
185
+ import { ServiceStatus } from '@hazeljs/discovery';
186
+
187
+ const instances = await client.getInstances('user-service', {
188
+ zone: 'us-east-1',
189
+ status: ServiceStatus.UP,
190
+ tags: ['api', 'production'],
191
+ metadata: { version: '2.0.0' },
192
+ });
193
+ ```
194
+
195
+ The `applyServiceFilter` utility is also exported for use in custom backends or application code:
196
+
197
+ ```typescript
198
+ import { applyServiceFilter } from '@hazeljs/discovery';
199
+
200
+ const filtered = applyServiceFilter(instances, { zone: 'us-east-1' });
201
+ ```
202
+
203
+ ## Registry Backends
204
+
205
+ ### Memory (Development)
206
+
207
+ The default backend. Stores everything in-process memory -- suitable for development and testing.
208
+
209
+ ```typescript
210
+ import { MemoryRegistryBackend } from '@hazeljs/discovery';
211
+
212
+ const backend = new MemoryRegistryBackend(90000); // optional expiration in ms
213
+ const registry = new ServiceRegistry(config, backend);
214
+ ```
215
+
216
+ ### Redis (Production)
217
+
218
+ Distributed registry using Redis with TTL-based expiration. Uses `SCAN` (not `KEYS`) for production safety and `MGET` for efficient batch lookups. Includes connection error handling with automatic reconnection support.
219
+
220
+ ```bash
221
+ npm install ioredis
222
+ ```
223
+
224
+ ```typescript
225
+ import Redis from 'ioredis';
226
+ import { RedisRegistryBackend } from '@hazeljs/discovery';
227
+
228
+ const redis = new Redis({
229
+ host: 'localhost',
230
+ port: 6379,
231
+ password: 'your-password',
232
+ });
233
+
234
+ const backend = new RedisRegistryBackend(redis, {
235
+ keyPrefix: 'myapp:discovery:', // default: 'hazeljs:discovery:'
236
+ ttl: 90, // seconds, default: 90
237
+ });
238
+
239
+ const registry = new ServiceRegistry(config, backend);
240
+
241
+ // On shutdown
242
+ await backend.close();
243
+ ```
244
+
245
+ ### Consul
246
+
247
+ Integrates with HashiCorp Consul using TTL-based health checks.
248
+
249
+ ```bash
250
+ npm install consul
251
+ ```
252
+
253
+ ```typescript
254
+ import Consul from 'consul';
255
+ import { ConsulRegistryBackend } from '@hazeljs/discovery';
256
+
257
+ const consul = new Consul({
258
+ host: 'localhost',
259
+ port: 8500,
260
+ });
261
+
262
+ const backend = new ConsulRegistryBackend(consul, {
263
+ ttl: '30s', // TTL check interval (supports "30s", "5m", "1h")
264
+ datacenter: 'dc1',
265
+ });
266
+
267
+ const registry = new ServiceRegistry(config, backend);
268
+
269
+ // On shutdown
270
+ await backend.close();
271
+ ```
272
+
273
+ ### Kubernetes
274
+
275
+ Read-only discovery backend that integrates with Kubernetes Endpoints API. Registration, deregistration, heartbeat, and status updates are no-ops since Kubernetes manages these through its own primitives (Services, Endpoints, probes).
276
+
277
+ ```bash
278
+ npm install @kubernetes/client-node
279
+ ```
280
+
281
+ ```typescript
282
+ import { KubeConfig } from '@kubernetes/client-node';
283
+ import { KubernetesRegistryBackend } from '@hazeljs/discovery';
284
+
285
+ const kubeConfig = new KubeConfig();
286
+ kubeConfig.loadFromDefault();
287
+
288
+ const backend = new KubernetesRegistryBackend(kubeConfig, {
289
+ namespace: 'default',
290
+ labelSelector: 'app.kubernetes.io/managed-by=hazeljs',
291
+ });
292
+
293
+ // Use the backend for service discovery only
294
+ const client = new DiscoveryClient({}, backend);
295
+ ```
296
+
297
+ ## Smart Retry Logic
298
+
299
+ `ServiceClient` only retries on transient errors. Client errors (4xx) are thrown immediately without wasting retries:
300
+
301
+ | Error Type | Retried? |
302
+ |---|---|
303
+ | Network errors (ECONNREFUSED, timeout) | Yes |
304
+ | 502 Bad Gateway | Yes |
305
+ | 503 Service Unavailable | Yes |
306
+ | 504 Gateway Timeout | Yes |
307
+ | 408 Request Timeout | Yes |
308
+ | 429 Too Many Requests | Yes |
309
+ | 400 Bad Request | No |
310
+ | 401 Unauthorized | No |
311
+ | 403 Forbidden | No |
312
+ | 404 Not Found | No |
313
+ | Other 4xx | No |
314
+
315
+ ## Custom Logging
316
+
317
+ By default, the package logs to the console with a `[discovery]` prefix. You can plug in your own logger (e.g., Winston, Pino, Bunyan):
318
+
319
+ ```typescript
320
+ import { DiscoveryLogger } from '@hazeljs/discovery';
321
+
322
+ DiscoveryLogger.setLogger({
323
+ debug: (msg, ...args) => myLogger.debug(msg, ...args),
324
+ info: (msg, ...args) => myLogger.info(msg, ...args),
325
+ warn: (msg, ...args) => myLogger.warn(msg, ...args),
326
+ error: (msg, ...args) => myLogger.error(msg, ...args),
327
+ });
328
+
329
+ // Reset to default console logger
330
+ DiscoveryLogger.resetLogger();
331
+ ```
332
+
333
+ ## Config Validation
334
+
335
+ All configuration objects are validated at construction time. Invalid configs throw a `ConfigValidationError` with a descriptive message:
336
+
337
+ ```typescript
338
+ import { ServiceRegistry, ConfigValidationError } from '@hazeljs/discovery';
339
+
340
+ try {
341
+ const registry = new ServiceRegistry({
342
+ name: '', // invalid: empty string
343
+ port: -1, // invalid: negative port
344
+ });
345
+ } catch (error) {
346
+ if (error instanceof ConfigValidationError) {
347
+ console.error(error.message);
348
+ // => 'ServiceRegistryConfig: "name" is required and must be a non-empty string'
349
+ }
350
+ }
351
+ ```
352
+
353
+ ## API Reference
354
+
355
+ ### ServiceRegistry
356
+
357
+ ```typescript
358
+ class ServiceRegistry {
359
+ constructor(config: ServiceRegistryConfig, backend?: RegistryBackend);
360
+ register(): Promise<void>;
361
+ deregister(): Promise<void>;
362
+ getInstance(): ServiceInstance | null;
363
+ getBackend(): RegistryBackend;
364
+ }
365
+ ```
366
+
367
+ ### DiscoveryClient
368
+
369
+ ```typescript
370
+ class DiscoveryClient {
371
+ constructor(config?: DiscoveryClientConfig, backend?: RegistryBackend);
372
+ getInstances(serviceName: string, filter?: ServiceFilter): Promise<ServiceInstance[]>;
373
+ getInstance(serviceName: string, strategy?: string, filter?: ServiceFilter): Promise<ServiceInstance | null>;
374
+ getAllServices(): Promise<string[]>;
375
+ clearCache(serviceName?: string): void;
376
+ getLoadBalancerFactory(): LoadBalancerFactory;
377
+ close(): void;
378
+ }
379
+ ```
380
+
381
+ ### ServiceClient
382
+
383
+ ```typescript
384
+ class ServiceClient {
385
+ constructor(discoveryClient: DiscoveryClient, config: ServiceClientConfig);
386
+ get<T>(path: string, config?: AxiosRequestConfig): Promise<AxiosResponse<T>>;
387
+ post<T>(path: string, data?: unknown, config?: AxiosRequestConfig): Promise<AxiosResponse<T>>;
388
+ put<T>(path: string, data?: unknown, config?: AxiosRequestConfig): Promise<AxiosResponse<T>>;
389
+ delete<T>(path: string, config?: AxiosRequestConfig): Promise<AxiosResponse<T>>;
390
+ patch<T>(path: string, data?: unknown, config?: AxiosRequestConfig): Promise<AxiosResponse<T>>;
391
+ }
392
+ ```
393
+
394
+ ### Configuration Types
395
+
396
+ ```typescript
397
+ interface ServiceRegistryConfig {
398
+ name: string;
399
+ port: number;
400
+ host?: string;
401
+ protocol?: 'http' | 'https' | 'grpc';
402
+ healthCheckPath?: string; // default: '/health'
403
+ healthCheckInterval?: number; // default: 30000 (ms)
404
+ metadata?: Record<string, unknown>;
405
+ zone?: string;
406
+ tags?: string[];
407
+ }
408
+
409
+ interface DiscoveryClientConfig {
410
+ cacheEnabled?: boolean;
411
+ cacheTTL?: number; // default: 30000 (ms)
412
+ refreshInterval?: number; // auto-refresh cache interval (ms)
413
+ }
414
+
415
+ interface ServiceClientConfig {
416
+ serviceName: string;
417
+ loadBalancingStrategy?: string; // default: 'round-robin'
418
+ filter?: ServiceFilter;
419
+ timeout?: number; // default: 5000 (ms)
420
+ retries?: number; // default: 3
421
+ retryDelay?: number; // default: 1000 (ms)
422
+ }
423
+ ```
424
+
425
+ ## Examples
426
+
427
+ See the [examples](./examples) directory for complete working examples.
428
+
429
+ ## Testing
430
+
431
+ ```bash
432
+ npm test
433
+ ```
434
+
435
+ The package includes 145+ unit tests across 9 test suites with 85%+ code coverage.
436
+
437
+ ## Contributing
438
+
439
+ Contributions are welcome! Please read our [Contributing Guide](../../CONTRIBUTING.md) for details.
440
+
441
+ ## License
442
+
443
+ Apache 2.0 &copy; [HazelJS](https://hazeljs.com)
444
+
445
+ ## Links
446
+
447
+ - [Documentation](https://hazeljs.com/docs)
448
+ - [GitHub](https://github.com/hazel-js/hazeljs)
449
+ - [Issues](https://github.com/hazel-js/hazeljs/issues)
450
+ - [Roadmap](../../ROADMAP_2.0.md)
@@ -0,0 +1,6 @@
1
+ /**
2
+ * Consul Backend Tests
3
+ * Uses mocked Consul client
4
+ */
5
+ export {};
6
+ //# sourceMappingURL=consul-backend.test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"consul-backend.test.d.ts","sourceRoot":"","sources":["../../src/__tests__/consul-backend.test.ts"],"names":[],"mappings":"AAAA;;;GAGG"}