@thzero/library_server 0.17.24 → 0.17.25
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.
- package/boot/index.js +5 -0
- package/package.json +3 -3
package/boot/index.js
CHANGED
|
@@ -191,6 +191,8 @@ class BootMain {
|
|
|
191
191
|
console.log(`Starting HTTP on: ${this.address}:${this.port}`);
|
|
192
192
|
|
|
193
193
|
await this._initServerDiscovery();
|
|
194
|
+
|
|
195
|
+
await this._initServerStart(injector);
|
|
194
196
|
}
|
|
195
197
|
|
|
196
198
|
_determinePlugins(args) {
|
|
@@ -433,6 +435,9 @@ class BootMain {
|
|
|
433
435
|
await this.resourceDiscoveryServiceI.initialize(LibraryCommonUtility.correlationId(), await this._initServerDiscoveryOptsResources(opts));
|
|
434
436
|
}
|
|
435
437
|
|
|
438
|
+
async _initServerStart() {
|
|
439
|
+
}
|
|
440
|
+
|
|
436
441
|
_injectRepository(key, repository) {
|
|
437
442
|
console.log(`repositories.inject - ${key}`);
|
|
438
443
|
this._repositories.set(key, repository);
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thzero/library_server",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.17.
|
|
4
|
+
"version": "0.17.25",
|
|
5
5
|
"version_major": 0,
|
|
6
6
|
"version_minor": 17,
|
|
7
|
-
"version_patch":
|
|
8
|
-
"version_date": "01/
|
|
7
|
+
"version_patch": 25,
|
|
8
|
+
"version_date": "02/01/2024",
|
|
9
9
|
"description": "An opinionated library of common functionality to bootstrap an API using either Fastify or Koa as the web server.",
|
|
10
10
|
"author": "thZero",
|
|
11
11
|
"license": "MIT",
|